@@ -8,41 +8,17 @@ Gem::Specification.new do |s|
8
8
s . authors = [ "Kent Sibilev" , "Mark Moseley" , "Gabriel Horner" ]
9
9
10
10
s . homepage = "http://github.com/cldwalker/debugger"
11
- s . summary = %q{Fast Ruby debugger - core component }
11
+ s . summary = %q{Fast Ruby debugger - base + cli }
12
12
s . description = %q{debugger is a fast implementation of the standard Ruby debugger debug.rb.
13
13
It is implemented by utilizing a new Ruby C API hook. The core component
14
14
provides support that front-ends can build on. It provides breakpoint
15
15
handling, bindings for stack frames among other things.
16
16
}
17
17
s . required_rubygems_version = ">= 1.3.6"
18
- s . extra_rdoc_files = [
19
- "README" ,
20
- "ext/ruby_debug/ruby_debug.c"
21
- ]
18
+ s . extra_rdoc_files = [ "README.md" ]
22
19
s . files = `git ls-files` . split ( "\n " )
23
- # s.files = [
24
- # "AUTHORS",
25
- # "CHANGES",
26
- # "LICENSE",
27
- # "README",
28
- # "Rakefile",
29
- # "ext/ruby_debug/extconf.rb",
30
- # "ext/ruby_debug/breakpoint.c",
31
- # "ext/ruby_debug/ruby_debug.h",
32
- # "ext/ruby_debug/ruby_debug.c",
33
- # "lib/ruby-debug-base.rb",
34
- # "lib/debugger.rb",
35
- # "lib/debugger/version.rb",
36
- # "lib/ChangeLog"
37
- # ]
38
- # s.test_files = [
39
- # "test/base/base.rb",
40
- # "test/base/binding.rb",
41
- # "test/base/catchpoint.rb"
42
- # ]
43
- # s.files += s.test_files
44
20
s . extensions << "ext/ruby_debug/extconf.rb"
45
21
s . add_dependency ( "columnize" , ">= 0.3.1" )
46
- s . add_dependency ( "ruby_core_source" , ">= 0.1.4 " )
47
- s . add_dependency ( "linecache19" , ">= 0.5.11" )
22
+ s . add_dependency ( "ruby_core_source" , ">= 0.1.5 " )
23
+ s . add_dependency "debugger-linecache"
48
24
end
0 commit comments