Skip to content

Commit c341b8c

Browse files
committed
update gemspec + replace readme
1 parent 893de75 commit c341b8c

File tree

3 files changed

+9
-28
lines changed

3 files changed

+9
-28
lines changed

README renamed to OLD_README

File renamed without changes.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Description
2+
===========
3+
A fork of ruby-debug19 that works on 1.9.3 and installs easily.
4+
5+
TODO

debugger.gemspec

Lines changed: 4 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -8,41 +8,17 @@ Gem::Specification.new do |s|
88
s.authors = ["Kent Sibilev", "Mark Moseley", "Gabriel Horner"]
99
s.email = "[email protected]"
1010
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}
1212
s.description = %q{debugger is a fast implementation of the standard Ruby debugger debug.rb.
1313
It is implemented by utilizing a new Ruby C API hook. The core component
1414
provides support that front-ends can build on. It provides breakpoint
1515
handling, bindings for stack frames among other things.
1616
}
1717
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" ]
2219
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
4420
s.extensions << "ext/ruby_debug/extconf.rb"
4521
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"
4824
end

0 commit comments

Comments
 (0)