forked from cldwalker/debugger
-
Notifications
You must be signed in to change notification settings - Fork 4
/
debugger2.gemspec
29 lines (28 loc) · 1.27 KB
/
debugger2.gemspec
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
# -*- encoding: utf-8 -*-
require 'rubygems' unless defined? Gem
require File.dirname(__FILE__) + "/lib/debugger/version"
Gem::Specification.new do |s|
s.name = %q{debugger2}
s.version = Debugger::VERSION
s.authors = ['Koichi Sasada', "Zachary Scott", "Kent Sibilev", "Mark Moseley", "Gabriel Horner"]
s.email = "[email protected]"
s.homepage = "https://github.com/ko1/debugger2"
s.summary = %q{Fast Ruby debugger - base + cli}
s.description = %q{debugger is a fast implementation of the standard Ruby debugger debug.rb.
It is implemented by utilizing a new Ruby C API hook. The core component
provides support that front-ends can build on. It provides breakpoint
handling, bindings for stack frames among other things.
}
s.required_rubygems_version = ">= 1.3.6"
s.extra_rdoc_files = [ "README.md" ]
s.files = `git ls-files`.split("\n")
s.extensions << "ext/ruby_debug/extconf.rb"
s.executables = ["rdebug"]
s.add_dependency "columnize", ">= 0.3.1"
s.add_dependency "debugger-linecache", '~> 1.2.0'
s.add_development_dependency 'rake', '~> 0.9.2.2'
s.add_development_dependency 'rake-compiler', '~> 0.8.0'
s.add_development_dependency 'minitest', '~> 2.12.1'
s.add_development_dependency 'mocha', '~> 0.13.0'
s.license = "BSD"
end