--- !ruby/object:Gem::Specification name: rest-core version: !ruby/object:Gem::Version version: 2.1.0 platform: ruby authors: - Cardinal Blue - Lin Jen-Shin (godfat) autorequire: bindir: bin cert_chain: [] date: 2013-05-08 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rest-client requirement: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: '0' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: '0' description: |- Modular Ruby clients interface for REST APIs. There has been an explosion in the number of REST APIs available today. To address the need for a way to access these APIs easily and elegantly, we have developed rest-core, which consists of composable middleware that allows you to build a REST client for any REST API. Or in the case of common APIs such as Facebook, Github, and Twitter, you can simply use the dedicated clients provided by [rest-more][]. [rest-more]: https://github.com/cardinalblue/rest-more email: - dev (XD) cardinalblue.com executables: [] extensions: [] extra_rdoc_files: [] files: - .gitignore - .gitmodules - .travis.yml - CHANGES.md - Gemfile - LICENSE - NOTE.md - README.md - Rakefile - TODO.md - example/multi.rb - example/simple.rb - example/use-cases.rb - lib/rest-core.rb - lib/rest-core/builder.rb - lib/rest-core/client.rb - lib/rest-core/client/simple.rb - lib/rest-core/client/universal.rb - lib/rest-core/client_oauth1.rb - lib/rest-core/engine/auto.rb - lib/rest-core/engine/dry.rb - lib/rest-core/engine/em-http-request.rb - lib/rest-core/engine/future/future.rb - lib/rest-core/engine/future/future_fiber.rb - lib/rest-core/engine/future/future_thread.rb - lib/rest-core/engine/rest-client.rb - lib/rest-core/error.rb - lib/rest-core/event.rb - lib/rest-core/middleware.rb - lib/rest-core/middleware/auth_basic.rb - lib/rest-core/middleware/bypass.rb - lib/rest-core/middleware/cache.rb - lib/rest-core/middleware/common_logger.rb - lib/rest-core/middleware/default_headers.rb - lib/rest-core/middleware/default_payload.rb - lib/rest-core/middleware/default_query.rb - lib/rest-core/middleware/default_site.rb - lib/rest-core/middleware/defaults.rb - lib/rest-core/middleware/error_detector.rb - lib/rest-core/middleware/error_detector_http.rb - lib/rest-core/middleware/error_handler.rb - lib/rest-core/middleware/follow_redirect.rb - lib/rest-core/middleware/json_request.rb - lib/rest-core/middleware/json_response.rb - lib/rest-core/middleware/oauth1_header.rb - lib/rest-core/middleware/oauth2_header.rb - lib/rest-core/middleware/oauth2_query.rb - lib/rest-core/middleware/timeout.rb - lib/rest-core/middleware/timeout/timer_em.rb - lib/rest-core/middleware/timeout/timer_thread.rb - lib/rest-core/patch/multi_json.rb - lib/rest-core/patch/rest-client.rb - lib/rest-core/test.rb - lib/rest-core/util/hmac.rb - lib/rest-core/util/json.rb - lib/rest-core/util/parse_query.rb - lib/rest-core/util/payload.rb - lib/rest-core/version.rb - lib/rest-core/wrapper.rb - rest-core.gemspec - task/.gitignore - task/gemgem.rb - test/test_auth_basic.rb - test/test_builder.rb - test/test_cache.rb - test/test_client.rb - test/test_client_oauth1.rb - test/test_default_payload.rb - test/test_default_query.rb - test/test_em-http-request.rb - test/test_error_detector.rb - test/test_error_detector_http.rb - test/test_error_handler.rb - test/test_follow_redirect.rb - test/test_json_request.rb - test/test_json_response.rb - test/test_oauth1_header.rb - test/test_payload.rb - test/test_rest-client.rb - test/test_simple.rb - test/test_timeout.rb - test/test_universal.rb - test/test_wrapper.rb homepage: https://github.com/cardinalblue/rest-core licenses: - Apache License 2.0 metadata: {} post_install_message: | # [rest-core] Incompatible changes for POST requests: * We no longer support Rails-like POST payload, like translating `{:foo => [1, 2]}` to `'foo[]=1&foo[]=2'`. It would now be translated to `'foo=1&foo=2'`. If you like `'foo[]'` as the key, simply pass it as `{'foo[]' => [1, 2]}`. * This also applies to nested hashes like `{:foo => {:bar => 1}`. If you want that behaviour, just pass `{'foo[bar]' => 1}` which would then be translated to `'foo[bar]=1'`. rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: '0' required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: rubygems_version: 2.0.3 signing_key: specification_version: 4 summary: Modular Ruby clients interface for REST APIs. test_files: - test/test_auth_basic.rb - test/test_builder.rb - test/test_cache.rb - test/test_client.rb - test/test_client_oauth1.rb - test/test_default_payload.rb - test/test_default_query.rb - test/test_em-http-request.rb - test/test_error_detector.rb - test/test_error_detector_http.rb - test/test_error_handler.rb - test/test_follow_redirect.rb - test/test_json_request.rb - test/test_json_response.rb - test/test_oauth1_header.rb - test/test_payload.rb - test/test_rest-client.rb - test/test_simple.rb - test/test_timeout.rb - test/test_universal.rb - test/test_wrapper.rb