# -*- encoding: utf-8 -*- # stub: rest-core 2.1.1 ruby lib Gem::Specification.new do |s| s.name = "rest-core".freeze s.version = "2.1.1".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Cardinal Blue".freeze, "Lin Jen-Shin (godfat)".freeze] s.date = "2013-05-21" s.description = "Modular Ruby clients interface for REST APIs.\n\nThere has been an explosion in the number of REST APIs available today.\nTo address the need for a way to access these APIs easily and elegantly,\nwe have developed rest-core, which consists of composable middleware\nthat allows you to build a REST client for any REST API. Or in the case of\ncommon APIs such as Facebook, Github, and Twitter, you can simply use the\ndedicated clients provided by [rest-more][].\n\n[rest-more]: https://github.com/cardinalblue/rest-more".freeze s.email = ["dev (XD) cardinalblue.com".freeze] s.files = [".gitignore".freeze, ".gitmodules".freeze, ".travis.yml".freeze, "CHANGES.md".freeze, "Gemfile".freeze, "LICENSE".freeze, "NOTE.md".freeze, "README.md".freeze, "Rakefile".freeze, "TODO.md".freeze, "example/multi.rb".freeze, "example/simple.rb".freeze, "example/use-cases.rb".freeze, "lib/rest-core.rb".freeze, "lib/rest-core/builder.rb".freeze, "lib/rest-core/client.rb".freeze, "lib/rest-core/client/simple.rb".freeze, "lib/rest-core/client/universal.rb".freeze, "lib/rest-core/client_oauth1.rb".freeze, "lib/rest-core/engine/auto.rb".freeze, "lib/rest-core/engine/dry.rb".freeze, "lib/rest-core/engine/em-http-request.rb".freeze, "lib/rest-core/engine/future/future.rb".freeze, "lib/rest-core/engine/future/future_fiber.rb".freeze, "lib/rest-core/engine/future/future_thread.rb".freeze, "lib/rest-core/engine/rest-client.rb".freeze, "lib/rest-core/error.rb".freeze, "lib/rest-core/event.rb".freeze, "lib/rest-core/middleware.rb".freeze, "lib/rest-core/middleware/auth_basic.rb".freeze, "lib/rest-core/middleware/bypass.rb".freeze, "lib/rest-core/middleware/cache.rb".freeze, "lib/rest-core/middleware/common_logger.rb".freeze, "lib/rest-core/middleware/default_headers.rb".freeze, "lib/rest-core/middleware/default_payload.rb".freeze, "lib/rest-core/middleware/default_query.rb".freeze, "lib/rest-core/middleware/default_site.rb".freeze, "lib/rest-core/middleware/defaults.rb".freeze, "lib/rest-core/middleware/error_detector.rb".freeze, "lib/rest-core/middleware/error_detector_http.rb".freeze, "lib/rest-core/middleware/error_handler.rb".freeze, "lib/rest-core/middleware/follow_redirect.rb".freeze, "lib/rest-core/middleware/json_request.rb".freeze, "lib/rest-core/middleware/json_response.rb".freeze, "lib/rest-core/middleware/oauth1_header.rb".freeze, "lib/rest-core/middleware/oauth2_header.rb".freeze, "lib/rest-core/middleware/oauth2_query.rb".freeze, "lib/rest-core/middleware/timeout.rb".freeze, "lib/rest-core/middleware/timeout/timer_em.rb".freeze, "lib/rest-core/middleware/timeout/timer_thread.rb".freeze, "lib/rest-core/patch/multi_json.rb".freeze, "lib/rest-core/patch/rest-client.rb".freeze, "lib/rest-core/test.rb".freeze, "lib/rest-core/util/hmac.rb".freeze, "lib/rest-core/util/json.rb".freeze, "lib/rest-core/util/parse_query.rb".freeze, "lib/rest-core/util/payload.rb".freeze, "lib/rest-core/version.rb".freeze, "lib/rest-core/wrapper.rb".freeze, "rest-core.gemspec".freeze, "task/.gitignore".freeze, "task/gemgem.rb".freeze, "test/test_auth_basic.rb".freeze, "test/test_builder.rb".freeze, "test/test_cache.rb".freeze, "test/test_client.rb".freeze, "test/test_client_oauth1.rb".freeze, "test/test_default_payload.rb".freeze, "test/test_default_query.rb".freeze, "test/test_em-http-request.rb".freeze, "test/test_error_detector.rb".freeze, "test/test_error_detector_http.rb".freeze, "test/test_error_handler.rb".freeze, "test/test_follow_redirect.rb".freeze, "test/test_json_request.rb".freeze, "test/test_json_response.rb".freeze, "test/test_oauth1_header.rb".freeze, "test/test_payload.rb".freeze, "test/test_rest-client.rb".freeze, "test/test_simple.rb".freeze, "test/test_timeout.rb".freeze, "test/test_universal.rb".freeze, "test/test_wrapper.rb".freeze] s.homepage = "https://github.com/cardinalblue/rest-core".freeze s.licenses = ["Apache License 2.0".freeze] s.post_install_message = "# [rest-core] Since 2.1.0, Incompatible changes for POST requests:\n\n* We no longer support Rails-like POST payload, like translating\n `{:foo => [1, 2]}` to `'foo[]=1&foo[]=2'`. It would now be translated to\n `'foo=1&foo=2'`. If you like `'foo[]'` as the key, simply pass it as\n `{'foo[]' => [1, 2]}`.\n\n* This also applies to nested hashes like `{:foo => {:bar => 1}`. If you\n want that behaviour, just pass `{'foo[bar]' => 1}` which would then be\n translated to `'foo[bar]=1'`.\n".freeze s.rubygems_version = "3.5.10".freeze s.summary = "Modular Ruby clients interface for REST APIs.".freeze s.test_files = ["test/test_auth_basic.rb".freeze, "test/test_builder.rb".freeze, "test/test_cache.rb".freeze, "test/test_client.rb".freeze, "test/test_client_oauth1.rb".freeze, "test/test_default_payload.rb".freeze, "test/test_default_query.rb".freeze, "test/test_em-http-request.rb".freeze, "test/test_error_detector.rb".freeze, "test/test_error_detector_http.rb".freeze, "test/test_error_handler.rb".freeze, "test/test_follow_redirect.rb".freeze, "test/test_json_request.rb".freeze, "test/test_json_response.rb".freeze, "test/test_oauth1_header.rb".freeze, "test/test_payload.rb".freeze, "test/test_rest-client.rb".freeze, "test/test_simple.rb".freeze, "test/test_timeout.rb".freeze, "test/test_universal.rb".freeze, "test/test_wrapper.rb".freeze] s.specification_version = 4 s.add_runtime_dependency(%q.freeze, [">= 0".freeze]) end