rest-more.gemspec in rest-more-0.8.0 vs rest-more.gemspec in rest-more-1.0.0

- old
+ new

@@ -1,16 +1,16 @@ # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "rest-more" - s.version = "0.8.0" + s.version = "1.0.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = [ "Cardinal Blue", "Lin Jen-Shin (godfat)"] - s.date = "2011-11-29" + s.date = "2012-03-17" s.description = "Various REST clients such as Facebook and Twitter built with [rest-core][]\n\n[rest-core]: https://github.com/cardinalblue/rest-core" s.email = ["dev (XD) cardinalblue.com"] s.executables = ["rib-rest-core"] s.files = [ ".gitignore", @@ -21,10 +21,18 @@ "LICENSE", "README.md", "Rakefile", "TODO.md", "bin/rib-rest-core", + "doc/ToC.md", + "doc/dependency.md", + "doc/design.md", + "doc/rest-graph.md", + "doc/tutorial/facebook.md", + "example/async.rb", + "example/facebook.rb", + "example/multi.rb", "example/rails2/Gemfile", "example/rails2/README", "example/rails2/Rakefile", "example/rails2/app/controllers/application_controller.rb", "example/rails2/app/views/application/helper.html.erb", @@ -60,13 +68,16 @@ "example/rails3/config/rest-core.yaml", "example/rails3/config/routes.rb", "example/rails3/test/functional/application_controller_test.rb", "example/rails3/test/test_helper.rb", "example/rails3/test/unit/rails_util_test.rb", + "example/rainbows.rb", + "example/simple.rb", "example/sinatra/config.ru", "lib/rest-core/client/bing.rb", "lib/rest-core/client/bing/rails_util.rb", + "lib/rest-core/client/dropbox.rb", "lib/rest-core/client/facebook.rb", "lib/rest-core/client/facebook/rails_util.rb", "lib/rest-core/client/flurry.rb", "lib/rest-core/client/flurry/rails_util.rb", "lib/rest-core/client/github.rb", @@ -84,58 +95,60 @@ "lib/rest-more/version.rb", "lib/rib/app/rest-core.rb", "rest-more.gemspec", "task/.gitignore", "task/gemgem.rb", - "test/client/bing/test_api.rb", - "test/client/facebook/config/rest-core.yaml", - "test/client/facebook/test_api.rb", - "test/client/facebook/test_cache.rb", - "test/client/facebook/test_default.rb", - "test/client/facebook/test_error.rb", - "test/client/facebook/test_handler.rb", - "test/client/facebook/test_load_config.rb", - "test/client/facebook/test_misc.rb", - "test/client/facebook/test_oauth.rb", - "test/client/facebook/test_old.rb", - "test/client/facebook/test_page.rb", - "test/client/facebook/test_parse.rb", - "test/client/facebook/test_serialize.rb", - "test/client/facebook/test_timeout.rb", - "test/client/flurry/test_metrics.rb", - "test/client/mixi/test_api.rb", - "test/client/twitter/test_api.rb"] + "test/bing/test_api.rb", + "test/dropbox/test_api.rb", + "test/facebook/config/rest-core.yaml", + "test/facebook/test_api.rb", + "test/facebook/test_cache.rb", + "test/facebook/test_default.rb", + "test/facebook/test_error.rb", + "test/facebook/test_handler.rb", + "test/facebook/test_load_config.rb", + "test/facebook/test_misc.rb", + "test/facebook/test_oauth.rb", + "test/facebook/test_old.rb", + "test/facebook/test_page.rb", + "test/facebook/test_parse.rb", + "test/facebook/test_serialize.rb", + "test/facebook/test_timeout.rb", + "test/flurry/test_metrics.rb", + "test/mixi/test_api.rb", + "test/twitter/test_api.rb"] s.homepage = "https://github.com/cardinalblue/rest-more" s.require_paths = ["lib"] - s.rubygems_version = "1.8.11" + s.rubygems_version = "1.8.19" s.summary = "Various REST clients such as Facebook and Twitter built with [rest-core][]" s.test_files = [ - "test/client/bing/test_api.rb", - "test/client/facebook/test_api.rb", - "test/client/facebook/test_cache.rb", - "test/client/facebook/test_default.rb", - "test/client/facebook/test_error.rb", - "test/client/facebook/test_handler.rb", - "test/client/facebook/test_load_config.rb", - "test/client/facebook/test_misc.rb", - "test/client/facebook/test_oauth.rb", - "test/client/facebook/test_old.rb", - "test/client/facebook/test_page.rb", - "test/client/facebook/test_parse.rb", - "test/client/facebook/test_serialize.rb", - "test/client/facebook/test_timeout.rb", - "test/client/flurry/test_metrics.rb", - "test/client/mixi/test_api.rb", - "test/client/twitter/test_api.rb"] + "test/bing/test_api.rb", + "test/dropbox/test_api.rb", + "test/facebook/test_api.rb", + "test/facebook/test_cache.rb", + "test/facebook/test_default.rb", + "test/facebook/test_error.rb", + "test/facebook/test_handler.rb", + "test/facebook/test_load_config.rb", + "test/facebook/test_misc.rb", + "test/facebook/test_oauth.rb", + "test/facebook/test_old.rb", + "test/facebook/test_page.rb", + "test/facebook/test_parse.rb", + "test/facebook/test_serialize.rb", + "test/facebook/test_timeout.rb", + "test/flurry/test_metrics.rb", + "test/mixi/test_api.rb", + "test/twitter/test_api.rb"] if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<rest-core>, [">= 0"]) + s.add_runtime_dependency(%q<rest-core>, [">= 1.0.0"]) else - s.add_dependency(%q<rest-core>, [">= 0"]) + s.add_dependency(%q<rest-core>, [">= 1.0.0"]) end else - s.add_dependency(%q<rest-core>, [">= 0"]) + s.add_dependency(%q<rest-core>, [">= 1.0.0"]) end end