File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,6 @@ Zachary Scott (zzak)
38
38
39
39
=== Libraries
40
40
41
- [lib/debug.rb]
42
- _unmaintained_
43
41
[lib/mkmf.rb]
44
42
_unmaintained_
45
43
[lib/rubygems.rb, lib/rubygems/*]
@@ -101,6 +99,8 @@ Zachary Scott (zzak)
101
99
[lib/English.rb]
102
100
_unmaintained_
103
101
https://github.com/ruby/English
102
+ [lib/debug.rb]
103
+ _unmaintained_
104
104
[lib/delegate.rb]
105
105
_unmaintained_
106
106
https://github.com/ruby/delegate
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ description.
8
8
9
9
== Libraries
10
10
11
- DEBUGGER__:: Debugging functionality for Ruby
12
11
MakeMakefile:: Module used to generate a Makefile for C extensions
13
12
RbConfig:: Information of your configure and build of Ruby
14
13
Gem:: Package management framework for Ruby
@@ -33,6 +32,7 @@ Benchmark:: Provides methods to measure and report the time used to execute code
33
32
Bundler:: Manage your Ruby application's gem dependencies
34
33
CGI:: Support for the Common Gateway Interface protocol
35
34
CSV:: Provides an interface to read and write CSV files and data
35
+ DEBUGGER__:: Debugging functionality for Ruby
36
36
Delegator:: Provides three abilities to delegate method calls to an object
37
37
DidYouMean:: "Did you mean?" experience in Ruby
38
38
Digest:: Provides a framework for message digest libraries
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments