--- !ruby/object:Gem::Specification name: rest_model version: !ruby/object:Gem::Version version: 0.3.1 platform: ruby authors: - Victor Rodrigues - Vinicius Higa - William Yokoi autorequire: bindir: bin cert_chain: [] date: 2013-10-03 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: activesupport requirement: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '3.2' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '3.2' - !ruby/object:Gem::Dependency name: i18n requirement: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0.6' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0.6' - !ruby/object:Gem::Dependency name: rspec requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.1 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.1 - !ruby/object:Gem::Dependency name: rake requirement: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' description: '' email: - victorcrodrigues@gmail.com - vinicius.higa@locaweb.com.br - thekina@gmail.com executables: [] extensions: [] extra_rdoc_files: [] files: - .gitignore - .travis.yml - Gemfile - README.md - Rakefile - examples/all.rb - examples/belongs_to/href_options.rb - examples/belongs_to/resource_id_from_source.rb - examples/belongs_to/resource_id_options.rb - examples/belongs_to/simple.rb - examples/embeds_many/invisible.rb - examples/embeds_many/simple.rb - examples/embeds_many/with_array.rb - examples/embeds_many/with_class_name.rb - examples/embeds_many/with_fields.rb - examples/embeds_many/with_if.rb - examples/embeds_many/with_nil_value.rb - examples/embeds_many/with_start_key.rb - examples/embeds_one/flattened.rb - examples/embeds_one/simple.rb - examples/embeds_one/with_class_name.rb - examples/embeds_one/with_if.rb - examples/embeds_one/with_start_key.rb - examples/has_many/href_options.rb - examples/has_many/simple.rb - examples/has_one/href_options.rb - examples/has_one/simple.rb - examples/helper.rb - examples/initialize/embeds_many.rb - examples/initialize/embeds_many_array.rb - examples/initialize/embeds_one.rb - examples/initialize/simple.rb - examples/properties/array_serialization.rb - examples/properties/collections.rb - examples/properties/simple.rb - examples/properties/with_field.rb - examples/properties/with_field_path.rb - examples/properties/with_id.rb - examples/properties/with_if.rb - examples/properties/with_key_converter.rb - examples/properties/with_two_key_converters.rb - examples/properties/with_values.rb - examples/summarization/simple.rb - examples/to_source/embeds_many.rb - examples/to_source/embeds_many_without_key.rb - examples/to_source/embeds_one.rb - examples/to_source/embeds_one_without_key.rb - examples/to_source/flattened.rb - examples/to_source/serializables.rb - examples/to_source/simple.rb - examples/to_source/with_field.rb - examples/to_source/with_field_path.rb - examples/to_source/with_fields.rb - examples/to_source/without_key.rb - examples/to_source/without_nil.rb - examples/update_attributes/embeds_many.rb - examples/update_attributes/embeds_one.rb - examples/update_attributes/has_many.rb - examples/update_attributes/has_one.rb - examples/update_attributes/simple.rb - examples/update_attributes/with_nil_value.rb - examples/validations/simple.rb - lib/rest_model.rb - lib/rest_model/configuration.rb - lib/rest_model/errors.rb - lib/rest_model/key.rb - lib/rest_model/key/association.rb - lib/rest_model/key/builder.rb - lib/rest_model/key/embeddable.rb - lib/rest_model/key/embeddable/builder.rb - lib/rest_model/key/embeddable/response.rb - lib/rest_model/key/embeddable/retriever.rb - lib/rest_model/key/embeddable/sender.rb - lib/rest_model/key/href.rb - lib/rest_model/key/href/response.rb - lib/rest_model/key/property.rb - lib/rest_model/key/property/builder.rb - lib/rest_model/key/property/response.rb - lib/rest_model/key/property/retriever.rb - lib/rest_model/key/property/sender.rb - lib/rest_model/key/relation.rb - lib/rest_model/key/relation/builder.rb - lib/rest_model/key/relation/response.rb - lib/rest_model/response.rb - lib/rest_model/serialization/boolean.rb - lib/rest_model/serialization/date.rb - lib/rest_model/serialization/date_time.rb - lib/rest_model/serialization/enumerable.rb - lib/rest_model/serialization/float.rb - lib/rest_model/serialization/integer.rb - lib/rest_model/serialization/string.rb - lib/rest_model/serialization/symbol.rb - lib/rest_model/source/path.rb - lib/rest_model/source/retriever.rb - lib/rest_model/source/sender.rb - lib/rest_model/source/translation.rb - lib/rest_model/version.rb - rest_model.gemspec - spec/.DS_Store - spec/integration/belongs_to_spec.rb - spec/integration/embeds_many_spec.rb - spec/integration/embeds_one_spec.rb - spec/integration/has_many_spec.rb - spec/integration/has_one_spec.rb - spec/integration/property_spec.rb - spec/integration/summarization_spec.rb - spec/integration/to_source_spec.rb - spec/integration/update_attributes_spec.rb - spec/integration/validations_spec.rb - spec/spec_helper.rb - spec/support/examples.rb - spec/support/out.rb - spec/support/shared_examples.rb - spec/unit/configuration_spec.rb - spec/unit/key/association_spec.rb - spec/unit/key/embeddable/builder_spec.rb - spec/unit/key/embeddable/response_spec.rb - spec/unit/key/embeddable/retriever_spec.rb - spec/unit/key/embeddable_spec.rb - spec/unit/key/property/builder_spec.rb - spec/unit/key/property/response_spec.rb - spec/unit/key/property/retriever_spec.rb - spec/unit/key/property_spec.rb - spec/unit/key/relation/builder_spec.rb - spec/unit/key/relation/response_spec.rb - spec/unit/key/relation_spec.rb - spec/unit/key_spec.rb - spec/unit/response_spec.rb - spec/unit/rest_model_spec.rb - spec/unit/serialization/boolean_spec.rb - spec/unit/serialization/date_spec.rb - spec/unit/serialization/date_time_spec.rb - spec/unit/serialization/float_spec.rb - spec/unit/serialization/integer_spec.rb - spec/unit/serialization/string_spec.rb - spec/unit/source/path_spec.rb - spec/unit/source/retriever_spec.rb homepage: http://github.com/rodrigues/rest_model licenses: [] metadata: {} post_install_message: 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.6 signing_key: specification_version: 4 summary: '' test_files: - spec/integration/belongs_to_spec.rb - spec/integration/embeds_many_spec.rb - spec/integration/embeds_one_spec.rb - spec/integration/has_many_spec.rb - spec/integration/has_one_spec.rb - spec/integration/property_spec.rb - spec/integration/summarization_spec.rb - spec/integration/to_source_spec.rb - spec/integration/update_attributes_spec.rb - spec/integration/validations_spec.rb - spec/spec_helper.rb - spec/support/examples.rb - spec/support/out.rb - spec/support/shared_examples.rb - spec/unit/configuration_spec.rb - spec/unit/key/association_spec.rb - spec/unit/key/embeddable/builder_spec.rb - spec/unit/key/embeddable/response_spec.rb - spec/unit/key/embeddable/retriever_spec.rb - spec/unit/key/embeddable_spec.rb - spec/unit/key/property/builder_spec.rb - spec/unit/key/property/response_spec.rb - spec/unit/key/property/retriever_spec.rb - spec/unit/key/property_spec.rb - spec/unit/key/relation/builder_spec.rb - spec/unit/key/relation/response_spec.rb - spec/unit/key/relation_spec.rb - spec/unit/key_spec.rb - spec/unit/response_spec.rb - spec/unit/rest_model_spec.rb - spec/unit/serialization/boolean_spec.rb - spec/unit/serialization/date_spec.rb - spec/unit/serialization/date_time_spec.rb - spec/unit/serialization/float_spec.rb - spec/unit/serialization/integer_spec.rb - spec/unit/serialization/string_spec.rb - spec/unit/source/path_spec.rb - spec/unit/source/retriever_spec.rb has_rdoc: