forked from mark-moseley/ruby-debug
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ruby-debug.gemspec
60 lines (56 loc) · 1.91 KB
/
ruby-debug.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{ruby-debug-base19}
s.version = "0.12.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kent Sibilev", "Mark Moseley"]
s.date = %q{2009-09-08}
s.description = %q{ruby-debug 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.email = %q{[email protected]}
s.extra_rdoc_files = [
"README",
"ext/ruby_debug/ruby_debug.c"
]
s.files = [
"AUTHORS",
"CHANGES",
"LICENSE",
"README",
"Rakefile",
"ext/ruby_debug/extconf.rb",
"ext/ruby_debug/breakpoint.c",
"ext/ruby_debug/ruby_debug.h",
"ext/ruby_debug/ruby_debug.c",
"lib/ruby-debug-base.rb",
"lib/ChangeLog"
]
s.homepage = %q{http://rubyforge.org/projects/ruby-debug19/}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.8.2")
s.rubyforge_project = %q{ruby-debug19}
s.rubygems_version = %q{1.3.4}
s.summary = %q{Fast Ruby debugger - core component}
s.test_files = [
"test/base/base.rb",
"test/base/binding.rb",
"test/base/catchpoint.rb"
]
s.files += s.test_files
s.extensions << "ext/ruby_debug/extconf.rb"
s.add_dependency("columnize", ">= 0.3.1")
s.add_dependency("ruby_core_source", ">= 0.1.4")
s.add_dependency("linecache19", ">= 0.5.11")
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end