mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Promote RSS library to default gems.
Its upstream was moved to https://github.com/ruby/rss. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9b6175b282
commit
ccc52902c0
3 changed files with 36 additions and 3 deletions
|
@ -122,8 +122,6 @@ Zachary Scott (zzak)
|
|||
Kouhei Sutou (kou)
|
||||
[lib/rinda/*]
|
||||
Masatoshi SEKI (seki)
|
||||
[lib/rss.rb, lib/rss/*]
|
||||
Kouhei Sutou (kou)
|
||||
[lib/rubygems.rb, lib/ubygems.rb, lib/rubygems/*]
|
||||
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
||||
https://github.com/rubygems/rubygems
|
||||
|
@ -220,6 +218,8 @@ Zachary Scott (zzak)
|
|||
[lib/rdoc.rb, lib/rdoc/*]
|
||||
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
||||
https://github.com/ruby/rdoc
|
||||
[lib/rss.rb, lib/rss/*]
|
||||
Kouhei Sutou (kou)
|
||||
[lib/scanf.rb]
|
||||
David A. Black (dblack)
|
||||
https://github.com/ruby/scanf
|
||||
|
|
|
@ -52,7 +52,6 @@ resolv-replace.rb:: Replace Socket DNS with Resolv
|
|||
Resolv:: Thread-aware DNS resolver library in Ruby
|
||||
REXML:: An XML toolkit for Ruby
|
||||
Rinda:: The Linda distributed computing paradigm in Ruby
|
||||
RSS:: Family of libraries that support various formats of XML "feeds"
|
||||
Gem:: Package management framework for Ruby
|
||||
SecureRandom:: Interface for secure random number generator
|
||||
Set:: Provides a class to deal with collections of unordered, unique values
|
||||
|
@ -96,6 +95,7 @@ CMath:: Provides Trigonometric and Transcendental functions for complex numbers
|
|||
CSV:: Provides an interface to read and write CSV files and data
|
||||
FileUtils:: Several file utility methods for copying, moving, removing, etc
|
||||
RDoc:: Produces HTML and command-line documentation for Ruby
|
||||
RSS:: Family of libraries that support various formats of XML "feeds"
|
||||
Scanf:: A Ruby implementation of the C function scanf(3)
|
||||
WEBrick:: An HTTP server toolkit for Ruby
|
||||
|
||||
|
|
33
lib/rss/rss.gemspec
Normal file
33
lib/rss/rss.gemspec
Normal file
|
@ -0,0 +1,33 @@
|
|||
require_relative "rss"
|
||||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = "rss"
|
||||
spec.version = RSS::VERSION
|
||||
spec.authors = ["Kouhei Sutou"]
|
||||
spec.email = ["kou@cozmixng.org"]
|
||||
|
||||
spec.summary = %q{Family of libraries that support various formats of XML "feeds".}
|
||||
spec.description = %q{Family of libraries that support various formats of XML "feeds".}
|
||||
spec.homepage = "https://github.com/ruby/rss"
|
||||
spec.license = "BSD-2-Clause"
|
||||
|
||||
spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile",
|
||||
"bin/console", "bin/setup", "lib/rss.rb", "lib/rss/0.9.rb", "lib/rss/1.0.rb", "lib/rss/2.0.rb",
|
||||
"lib/rss/atom.rb", "lib/rss/content.rb", "lib/rss/content/1.0.rb", "lib/rss/content/2.0.rb",
|
||||
"lib/rss/converter.rb", "lib/rss/dublincore.rb", "lib/rss/dublincore/1.0.rb", "lib/rss/dublincore/2.0.rb",
|
||||
"lib/rss/dublincore/atom.rb", "lib/rss/image.rb", "lib/rss/itunes.rb", "lib/rss/maker.rb",
|
||||
"lib/rss/maker/0.9.rb", "lib/rss/maker/1.0.rb", "lib/rss/maker/2.0.rb", "lib/rss/maker/atom.rb",
|
||||
"lib/rss/maker/base.rb", "lib/rss/maker/content.rb", "lib/rss/maker/dublincore.rb", "lib/rss/maker/entry.rb",
|
||||
"lib/rss/maker/feed.rb", "lib/rss/maker/image.rb", "lib/rss/maker/itunes.rb", "lib/rss/maker/slash.rb",
|
||||
"lib/rss/maker/syndication.rb", "lib/rss/maker/taxonomy.rb", "lib/rss/maker/trackback.rb",
|
||||
"lib/rss/parser.rb", "lib/rss/rexmlparser.rb", "lib/rss/rss.rb", "lib/rss/slash.rb", "lib/rss/syndication.rb",
|
||||
"lib/rss/taxonomy.rb", "lib/rss/trackback.rb", "lib/rss/utils.rb", "lib/rss/xml-stylesheet.rb",
|
||||
"lib/rss/xml.rb", "lib/rss/xmlparser.rb", "lib/rss/xmlscanner.rb", "rss.gemspec"]
|
||||
spec.bindir = "exe"
|
||||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||
spec.require_paths = ["lib"]
|
||||
|
||||
spec.add_development_dependency "bundler"
|
||||
spec.add_development_dependency "rake"
|
||||
spec.add_development_dependency "test-unit"
|
||||
end
|
Loading…
Reference in a new issue