Skip to content

Commit 66bf743

Browse files
committed
Promote debug.rb to default gems.
It have no upstream repo yet. This change is experimental for 3.0.0-preview2.
1 parent 89c8ca3 commit 66bf743

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

doc/maintainers.rdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ Zachary Scott (zzak)
3838

3939
=== Libraries
4040

41-
[lib/debug.rb]
42-
_unmaintained_
4341
[lib/mkmf.rb]
4442
_unmaintained_
4543
[lib/rubygems.rb, lib/rubygems/*]
@@ -101,6 +99,8 @@ Zachary Scott (zzak)
10199
[lib/English.rb]
102100
_unmaintained_
103101
https://github.com/ruby/English
102+
[lib/debug.rb]
103+
_unmaintained_
104104
[lib/delegate.rb]
105105
_unmaintained_
106106
https://github.com/ruby/delegate

doc/standard_library.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ description.
88

99
== Libraries
1010

11-
DEBUGGER__:: Debugging functionality for Ruby
1211
MakeMakefile:: Module used to generate a Makefile for C extensions
1312
RbConfig:: Information of your configure and build of Ruby
1413
Gem:: Package management framework for Ruby
@@ -33,6 +32,7 @@ Benchmark:: Provides methods to measure and report the time used to execute code
3332
Bundler:: Manage your Ruby application's gem dependencies
3433
CGI:: Support for the Common Gateway Interface protocol
3534
CSV:: Provides an interface to read and write CSV files and data
35+
DEBUGGER__:: Debugging functionality for Ruby
3636
Delegator:: Provides three abilities to delegate method calls to an object
3737
DidYouMean:: "Did you mean?" experience in Ruby
3838
Digest:: Provides a framework for message digest libraries

lib/debug.gemspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Gem::Specification.new do |spec|
2+
spec.name = "debug"
3+
spec.version = "0.1.0"
4+
spec.authors = ["Yukihiro Matsumoto"]
5+
spec.email = ["[email protected]"]
6+
7+
spec.summary = %q{Debugging functionality for Ruby}
8+
spec.description = %q{Debugging functionality for Ruby}
9+
spec.homepage = "https://github.com/ruby/debug"
10+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
11+
spec.licenses = ["Ruby", "BSD-2-Clause"]
12+
13+
spec.metadata["homepage_uri"] = spec.homepage
14+
spec.metadata["source_code_uri"] = spec.homepage
15+
16+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
17+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18+
end
19+
spec.bindir = "exe"
20+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21+
spec.require_paths = ["lib"]
22+
end

0 commit comments

Comments
 (0)