├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib └── redis │ ├── elasticache.rb │ └── elasticache │ ├── failover.rb │ └── version.rb ├── redis-elasticache.gemspec └── spec ├── redis └── elasticache_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/redis/elasticache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/lib/redis/elasticache.rb -------------------------------------------------------------------------------- /lib/redis/elasticache/failover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/lib/redis/elasticache/failover.rb -------------------------------------------------------------------------------- /lib/redis/elasticache/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/lib/redis/elasticache/version.rb -------------------------------------------------------------------------------- /redis-elasticache.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/redis-elasticache.gemspec -------------------------------------------------------------------------------- /spec/redis/elasticache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/spec/redis/elasticache_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigmcnamara/redis-elasticache/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------