Sha256: af1cb68003b7aa2f368e9fc01bca88e36780755056734e6921d545c53f49ce88

Contents?: true

Size: 1.22 KB

Versions: 1

Compression:

Stored size: 1.22 KB

Contents

require File.dirname(__FILE__) + '/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@mail.com'
  s.license = 'BSD'
  s.homepage = 'http://github.com/deivid-rodriguez/byebug'
  s.summary = 'Ruby 2.0 fast debugger - base + CLI'
  s.description = "Byebug is a Ruby 2 debugger. It's implemented using the
    Ruby 2 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.0.0'

  s.files = Dir['lib/**/*.rb', 'ext/**/*.[ch]', '.gitignore', 'LICENSE']
  s.files += %w(.rubocop.yml .travis.yml byebug.gemspec Gemfile Rakefile)
  s.bindir = 'bin'
  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_dependency 'columnize', '0.9.0'

  s.add_development_dependency 'bundler', '~> 1.7'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
byebug-4.0.0 byebug.gemspec