зеркало из https://github.com/github/ruby.git
Added initial gemspec for Scanf module.
[Feature #13213] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
957e6e4b14
Коммит
6c0d7c98b6
|
@ -128,8 +128,6 @@ Zachary Scott (zzak)
|
||||||
Kouhei Sutou (kou)
|
Kouhei Sutou (kou)
|
||||||
[lib/rubygems.rb, lib/ubygems.rb, lib/rubygems/*]
|
[lib/rubygems.rb, lib/ubygems.rb, lib/rubygems/*]
|
||||||
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
||||||
[lib/scanf.rb]
|
|
||||||
David A. Black (dblack)
|
|
||||||
[lib/set.rb]
|
[lib/set.rb]
|
||||||
Akinori MUSHA (knu)
|
Akinori MUSHA (knu)
|
||||||
[lib/securerandom.rb]
|
[lib/securerandom.rb]
|
||||||
|
@ -234,6 +232,8 @@ Zachary Scott (zzak)
|
||||||
[lib/rdoc.rb, lib/rdoc/*]
|
[lib/rdoc.rb, lib/rdoc/*]
|
||||||
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
||||||
https://github.com/rdoc/rdoc
|
https://github.com/rdoc/rdoc
|
||||||
|
[lib/scanf.rb]
|
||||||
|
David A. Black (dblack)
|
||||||
[lib/webrick.rb, lib/webrick/*]
|
[lib/webrick.rb, lib/webrick/*]
|
||||||
Hiroshi Nakamura (nahi)
|
Hiroshi Nakamura (nahi)
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,6 @@ REXML:: An XML toolkit for Ruby
|
||||||
Rinda:: The Linda distributed computing paradigm in Ruby
|
Rinda:: The Linda distributed computing paradigm in Ruby
|
||||||
RSS:: Family of libraries that support various formats of XML "feeds"
|
RSS:: Family of libraries that support various formats of XML "feeds"
|
||||||
Gem:: Package management framework for Ruby
|
Gem:: Package management framework for Ruby
|
||||||
Scanf:: A Ruby implementation of the C function scanf(3)
|
|
||||||
SecureRandom:: Interface for secure random number generator
|
SecureRandom:: Interface for secure random number generator
|
||||||
Set:: Provides a class to deal with collections of unordered, unique values
|
Set:: Provides a class to deal with collections of unordered, unique values
|
||||||
Shell:: An idiomatic Ruby interface for common UNIX shell commands
|
Shell:: An idiomatic Ruby interface for common UNIX shell commands
|
||||||
|
@ -102,6 +101,7 @@ CMath:: Provides Trigonometric and Transcendental functions for complex numbers
|
||||||
CSV:: Provides an interface to read and write CSV files and data
|
CSV:: Provides an interface to read and write CSV files and data
|
||||||
FileUtils:: Several file utility methods for copying, moving, removing, etc
|
FileUtils:: Several file utility methods for copying, moving, removing, etc
|
||||||
RDoc:: Produces HTML and command-line documentation for Ruby
|
RDoc:: Produces HTML and command-line documentation for Ruby
|
||||||
|
Scanf:: A Ruby implementation of the C function scanf(3)
|
||||||
WEBrick:: An HTTP server toolkit for Ruby
|
WEBrick:: An HTTP server toolkit for Ruby
|
||||||
|
|
||||||
== Extensions
|
== Extensions
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
Gem::Specification.new do |s|
|
||||||
|
s.name = "scanf"
|
||||||
|
s.version = '0.0.1'
|
||||||
|
s.date = '2017-02-14'
|
||||||
|
s.summary = "scanf is an implementation of the C function scanf(3)."
|
||||||
|
s.description = "scanf is an implementation of the C function scanf(3)."
|
||||||
|
|
||||||
|
s.require_path = %w{lib}
|
||||||
|
s.files = %w{scanf.rb}
|
||||||
|
s.required_ruby_version = ">= 2.5.0dev"
|
||||||
|
|
||||||
|
s.authors = ["David Alan Black"]
|
||||||
|
s.email = ['dblack@superlink.net']
|
||||||
|
s.homepage = "https://www.ruby-lang.org"
|
||||||
|
s.license = "BSD-2-Clause"
|
||||||
|
end
|
Загрузка…
Ссылка в новой задаче