├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ └── tests.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── dalli-elasticache.gemspec ├── lib ├── dalli-elasticache.rb └── dalli │ ├── elasticache.rb │ └── elasticache │ ├── auto_discovery │ ├── base_command.rb │ ├── config_command.rb │ ├── config_response.rb │ ├── endpoint.rb │ ├── node.rb │ ├── stats_command.rb │ └── stats_response.rb │ └── version.rb └── spec ├── config_command_spec.rb ├── config_response_spec.rb ├── elasticache_spec.rb ├── endpoint_spec.rb ├── node_spec.rb ├── spec_helper.rb ├── stats_command_spec.rb └── stats_response_spec.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/Rakefile -------------------------------------------------------------------------------- /dalli-elasticache.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/dalli-elasticache.gemspec -------------------------------------------------------------------------------- /lib/dalli-elasticache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli-elasticache.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/auto_discovery/base_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/auto_discovery/base_command.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/auto_discovery/config_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/auto_discovery/config_command.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/auto_discovery/config_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/auto_discovery/config_response.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/auto_discovery/endpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/auto_discovery/endpoint.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/auto_discovery/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/auto_discovery/node.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/auto_discovery/stats_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/auto_discovery/stats_command.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/auto_discovery/stats_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/auto_discovery/stats_response.rb -------------------------------------------------------------------------------- /lib/dalli/elasticache/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/lib/dalli/elasticache/version.rb -------------------------------------------------------------------------------- /spec/config_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/config_command_spec.rb -------------------------------------------------------------------------------- /spec/config_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/config_response_spec.rb -------------------------------------------------------------------------------- /spec/elasticache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/elasticache_spec.rb -------------------------------------------------------------------------------- /spec/endpoint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/endpoint_spec.rb -------------------------------------------------------------------------------- /spec/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/node_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stats_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/stats_command_spec.rb -------------------------------------------------------------------------------- /spec/stats_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktheory/dalli-elasticache/HEAD/spec/stats_response_spec.rb --------------------------------------------------------------------------------