File: byebug.gemspec

package info (click to toggle)
ruby-byebug 11.1.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,252 kB
  • sloc: ruby: 8,835; ansic: 1,662; sh: 6; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 1,149 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

require_relative "lib/byebug/version"

Gem::Specification.new do |s|
  s.name = "byebug"
  s.version = Byebug::VERSION
  s.authors = ["David Rodriguez", "Kent Sibilev", "Mark Moseley"]
  s.email = "deivid.rodriguez@riseup.net"
  s.license = "BSD-2-Clause"
  s.homepage = "https://github.com/deivid-rodriguez/byebug"
  s.summary = "Ruby fast debugger - base + CLI"
  s.description = "Byebug is a Ruby debugger. It's implemented using the
    TracePoint C API for execution control and the Debug Inspector C API for
    call stack navigation.  The core component provides support that front-ends
    can build on. It provides breakpoint handling and bindings for stack frames
    among other things and it comes with an easy to use command line interface."

  s.required_ruby_version = ">= 2.4.0"

  s.files = Dir["lib/**/*.rb", "lib/**/*.yml", "ext/**/*.[ch]", "LICENSE"]
  s.bindir = "exe"
  s.executables = ["byebug"]
  s.extra_rdoc_files = %w[CHANGELOG.md CONTRIBUTING.md README.md GUIDE.md]
  s.extensions = ["ext/byebug/extconf.rb"]
  s.require_path = "lib"

  s.add_development_dependency "bundler", "~> 2.0"
end