├── .github └── workflows │ ├── lint.yaml │ ├── test.yaml │ └── vulnerability_scan_public.yaml ├── .gitignore ├── .rspec ├── .rubocop-https---raw-githubusercontent-com-GetTerminus-ruby-shared-configs-master--rubocop-3-1-yml ├── .rubocop-https---raw-githubusercontent-com-GetTerminus-ruby-shared-configs-master--rubocop-yml ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-version ├── CONTRIBUTING.md ├── Changelog.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── dynamo-store.gemspec ├── gemfiles ├── .bundle │ └── config ├── active_support_5.1.gemfile ├── active_support_5.1.gemfile.lock ├── active_support_5.2.gemfile ├── active_support_5.2.gemfile.lock ├── aws_sdk_3.gemfile └── aws_sdk_3.gemfile.lock ├── lib ├── active_support │ └── cache │ │ └── dynamo_store.rb ├── dynamo-store.rb └── dynamo-store │ └── version.rb └── spec ├── lib └── active_support │ └── cache │ └── dynamo_store_spec.rb └── spec_helper.rb /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/vulnerability_scan_public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.github/workflows/vulnerability_scan_public.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop-https---raw-githubusercontent-com-GetTerminus-ruby-shared-configs-master--rubocop-3-1-yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.rubocop-https---raw-githubusercontent-com-GetTerminus-ruby-shared-configs-master--rubocop-3-1-yml -------------------------------------------------------------------------------- /.rubocop-https---raw-githubusercontent-com-GetTerminus-ruby-shared-configs-master--rubocop-yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.rubocop-https---raw-githubusercontent-com-GetTerminus-ruby-shared-configs-master--rubocop-yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/Changelog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/bin/setup -------------------------------------------------------------------------------- /dynamo-store.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/dynamo-store.gemspec -------------------------------------------------------------------------------- /gemfiles/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_RETRY: "1" 3 | -------------------------------------------------------------------------------- /gemfiles/active_support_5.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/gemfiles/active_support_5.1.gemfile -------------------------------------------------------------------------------- /gemfiles/active_support_5.1.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/gemfiles/active_support_5.1.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/active_support_5.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/gemfiles/active_support_5.2.gemfile -------------------------------------------------------------------------------- /gemfiles/active_support_5.2.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/gemfiles/active_support_5.2.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/aws_sdk_3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/gemfiles/aws_sdk_3.gemfile -------------------------------------------------------------------------------- /gemfiles/aws_sdk_3.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/gemfiles/aws_sdk_3.gemfile.lock -------------------------------------------------------------------------------- /lib/active_support/cache/dynamo_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/lib/active_support/cache/dynamo_store.rb -------------------------------------------------------------------------------- /lib/dynamo-store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/lib/dynamo-store.rb -------------------------------------------------------------------------------- /lib/dynamo-store/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module DynamoStore 4 | VERSION = '1.0.2.1' 5 | end 6 | -------------------------------------------------------------------------------- /spec/lib/active_support/cache/dynamo_store_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/spec/lib/active_support/cache/dynamo_store_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetTerminus/dynamo-store/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------