├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── documentation.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── closed-issue-message.yml │ ├── handle-stale-discussions.yml │ └── stale_issues.yml ├── .gitignore ├── .gitmodules ├── .rubocop.yml ├── .rubocop_todo.yml ├── .yardopts ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.md ├── Rakefile ├── VERSION ├── aws-record.gemspec ├── doc-src └── templates │ └── default │ └── layout │ └── html │ ├── footer.erb │ └── layout.erb ├── features ├── batch │ ├── batch.feature │ └── step_definitions.rb ├── indexes │ ├── secondary_indexes.feature │ └── step_definitions.rb ├── inheritance │ ├── inheritance.feature │ └── step_definitions.rb ├── items │ ├── item_default_values.feature │ ├── item_updates.feature │ ├── items.feature │ └── step_definitions.rb ├── migrations │ ├── on_demand_tables.feature │ ├── step_definitions.rb │ └── tables.feature ├── searching │ ├── search.feature │ └── step_definitions.rb ├── step_definitions.rb ├── table_config │ ├── step_definitions.rb │ └── table_config.feature └── transactions │ ├── step_definitions.rb │ └── transactions.feature ├── lib ├── aws-record.rb └── aws-record │ ├── record.rb │ └── record │ ├── attribute.rb │ ├── attributes.rb │ ├── batch.rb │ ├── batch_read.rb │ ├── batch_write.rb │ ├── buildable_search.rb │ ├── client_configuration.rb │ ├── dirty_tracking.rb │ ├── errors.rb │ ├── item_collection.rb │ ├── item_data.rb │ ├── item_operations.rb │ ├── key_attributes.rb │ ├── marshalers │ ├── boolean_marshaler.rb │ ├── date_marshaler.rb │ ├── date_time_marshaler.rb │ ├── epoch_time_marshaler.rb │ ├── float_marshaler.rb │ ├── integer_marshaler.rb │ ├── list_marshaler.rb │ ├── map_marshaler.rb │ ├── numeric_set_marshaler.rb │ ├── string_marshaler.rb │ ├── string_set_marshaler.rb │ └── time_marshaler.rb │ ├── model_attributes.rb │ ├── query.rb │ ├── secondary_indexes.rb │ ├── table_config.rb │ ├── table_migration.rb │ ├── transactions.rb │ └── version.rb └── spec ├── aws-record ├── record │ ├── attribute_spec.rb │ ├── attributes_spec.rb │ ├── batch_spec.rb │ ├── client_configuration_spec.rb │ ├── dirty_tracking_spec.rb │ ├── item_collection_spec.rb │ ├── item_operations_spec.rb │ ├── marshalers │ │ ├── boolean_marshaler_spec.rb │ │ ├── date_marshaler_spec.rb │ │ ├── date_time_marshaler_spec.rb │ │ ├── epoch_time_marshaler_spec.rb │ │ ├── float_marshaler_spec.rb │ │ ├── integer_marshaler_spec.rb │ │ ├── list_marshaler_spec.rb │ │ ├── map_marshaler_spec.rb │ │ ├── numeric_set_marshaler_spec.rb │ │ ├── string_marshaler_spec.rb │ │ ├── string_set_marshaler_spec.rb │ │ └── time_marshaler_spec.rb │ ├── query_spec.rb │ ├── secondary_indexes_spec.rb │ ├── table_config_spec.rb │ ├── table_migration_spec.rb │ └── transactions_spec.rb └── record_spec.rb └── spec_helper.rb /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/closed-issue-message.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/workflows/closed-issue-message.yml -------------------------------------------------------------------------------- /.github/workflows/handle-stale-discussions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/workflows/handle-stale-discussions.yml -------------------------------------------------------------------------------- /.github/workflows/stale_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.github/workflows/stale_issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.14.0 2 | -------------------------------------------------------------------------------- /aws-record.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/aws-record.gemspec -------------------------------------------------------------------------------- /doc-src/templates/default/layout/html/footer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/doc-src/templates/default/layout/html/footer.erb -------------------------------------------------------------------------------- /doc-src/templates/default/layout/html/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/doc-src/templates/default/layout/html/layout.erb -------------------------------------------------------------------------------- /features/batch/batch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/batch/batch.feature -------------------------------------------------------------------------------- /features/batch/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/batch/step_definitions.rb -------------------------------------------------------------------------------- /features/indexes/secondary_indexes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/indexes/secondary_indexes.feature -------------------------------------------------------------------------------- /features/indexes/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/indexes/step_definitions.rb -------------------------------------------------------------------------------- /features/inheritance/inheritance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/inheritance/inheritance.feature -------------------------------------------------------------------------------- /features/inheritance/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/inheritance/step_definitions.rb -------------------------------------------------------------------------------- /features/items/item_default_values.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/items/item_default_values.feature -------------------------------------------------------------------------------- /features/items/item_updates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/items/item_updates.feature -------------------------------------------------------------------------------- /features/items/items.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/items/items.feature -------------------------------------------------------------------------------- /features/items/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/items/step_definitions.rb -------------------------------------------------------------------------------- /features/migrations/on_demand_tables.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/migrations/on_demand_tables.feature -------------------------------------------------------------------------------- /features/migrations/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/migrations/step_definitions.rb -------------------------------------------------------------------------------- /features/migrations/tables.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/migrations/tables.feature -------------------------------------------------------------------------------- /features/searching/search.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/searching/search.feature -------------------------------------------------------------------------------- /features/searching/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/searching/step_definitions.rb -------------------------------------------------------------------------------- /features/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/step_definitions.rb -------------------------------------------------------------------------------- /features/table_config/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/table_config/step_definitions.rb -------------------------------------------------------------------------------- /features/table_config/table_config.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/table_config/table_config.feature -------------------------------------------------------------------------------- /features/transactions/step_definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/transactions/step_definitions.rb -------------------------------------------------------------------------------- /features/transactions/transactions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/features/transactions/transactions.feature -------------------------------------------------------------------------------- /lib/aws-record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record.rb -------------------------------------------------------------------------------- /lib/aws-record/record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record.rb -------------------------------------------------------------------------------- /lib/aws-record/record/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/attribute.rb -------------------------------------------------------------------------------- /lib/aws-record/record/attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/attributes.rb -------------------------------------------------------------------------------- /lib/aws-record/record/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/batch.rb -------------------------------------------------------------------------------- /lib/aws-record/record/batch_read.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/batch_read.rb -------------------------------------------------------------------------------- /lib/aws-record/record/batch_write.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/batch_write.rb -------------------------------------------------------------------------------- /lib/aws-record/record/buildable_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/buildable_search.rb -------------------------------------------------------------------------------- /lib/aws-record/record/client_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/client_configuration.rb -------------------------------------------------------------------------------- /lib/aws-record/record/dirty_tracking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/dirty_tracking.rb -------------------------------------------------------------------------------- /lib/aws-record/record/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/errors.rb -------------------------------------------------------------------------------- /lib/aws-record/record/item_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/item_collection.rb -------------------------------------------------------------------------------- /lib/aws-record/record/item_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/item_data.rb -------------------------------------------------------------------------------- /lib/aws-record/record/item_operations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/item_operations.rb -------------------------------------------------------------------------------- /lib/aws-record/record/key_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/key_attributes.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/boolean_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/boolean_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/date_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/date_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/date_time_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/date_time_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/epoch_time_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/epoch_time_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/float_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/float_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/integer_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/integer_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/list_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/list_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/map_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/map_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/numeric_set_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/numeric_set_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/string_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/string_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/string_set_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/string_set_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/marshalers/time_marshaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/marshalers/time_marshaler.rb -------------------------------------------------------------------------------- /lib/aws-record/record/model_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/model_attributes.rb -------------------------------------------------------------------------------- /lib/aws-record/record/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/query.rb -------------------------------------------------------------------------------- /lib/aws-record/record/secondary_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/secondary_indexes.rb -------------------------------------------------------------------------------- /lib/aws-record/record/table_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/table_config.rb -------------------------------------------------------------------------------- /lib/aws-record/record/table_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/table_migration.rb -------------------------------------------------------------------------------- /lib/aws-record/record/transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/transactions.rb -------------------------------------------------------------------------------- /lib/aws-record/record/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/lib/aws-record/record/version.rb -------------------------------------------------------------------------------- /spec/aws-record/record/attribute_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/attribute_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/attributes_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/batch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/batch_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/client_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/client_configuration_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/dirty_tracking_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/dirty_tracking_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/item_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/item_collection_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/item_operations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/item_operations_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/boolean_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/boolean_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/date_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/date_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/date_time_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/date_time_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/epoch_time_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/epoch_time_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/float_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/float_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/integer_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/integer_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/list_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/list_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/map_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/map_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/numeric_set_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/numeric_set_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/string_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/string_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/string_set_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/string_set_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/marshalers/time_marshaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/marshalers/time_marshaler_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/query_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/secondary_indexes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/secondary_indexes_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/table_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/table_config_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/table_migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/table_migration_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record/transactions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record/transactions_spec.rb -------------------------------------------------------------------------------- /spec/aws-record/record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/aws-record/record_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-record-ruby/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------