├── .document ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── redistat.rb └── redistat │ ├── buffer.rb │ ├── collection.rb │ ├── connection.rb │ ├── core_ext.rb │ ├── core_ext │ ├── bignum.rb │ ├── date.rb │ ├── fixnum.rb │ ├── hash.rb │ └── time.rb │ ├── date.rb │ ├── event.rb │ ├── finder.rb │ ├── finder │ └── date_set.rb │ ├── key.rb │ ├── label.rb │ ├── mixins │ ├── database.rb │ ├── date_helper.rb │ ├── options.rb │ └── synchronize.rb │ ├── model.rb │ ├── result.rb │ ├── scope.rb │ ├── summary.rb │ └── version.rb ├── redistat.gemspec └── spec ├── buffer_spec.rb ├── collection_spec.rb ├── connection_spec.rb ├── core_ext └── hash_spec.rb ├── database_spec.rb ├── date_spec.rb ├── db └── .emptydir ├── event_spec.rb ├── finder └── date_set_spec.rb ├── finder_spec.rb ├── key_spec.rb ├── label_spec.rb ├── model_helper.rb ├── model_spec.rb ├── options_spec.rb ├── redis-test.conf ├── result_spec.rb ├── scope_spec.rb ├── spec_helper.rb ├── summary_spec.rb ├── synchronize_spec.rb └── thread_safety_spec.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/redistat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat.rb -------------------------------------------------------------------------------- /lib/redistat/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/buffer.rb -------------------------------------------------------------------------------- /lib/redistat/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/collection.rb -------------------------------------------------------------------------------- /lib/redistat/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/connection.rb -------------------------------------------------------------------------------- /lib/redistat/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/core_ext.rb -------------------------------------------------------------------------------- /lib/redistat/core_ext/bignum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/core_ext/bignum.rb -------------------------------------------------------------------------------- /lib/redistat/core_ext/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/core_ext/date.rb -------------------------------------------------------------------------------- /lib/redistat/core_ext/fixnum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/core_ext/fixnum.rb -------------------------------------------------------------------------------- /lib/redistat/core_ext/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/core_ext/hash.rb -------------------------------------------------------------------------------- /lib/redistat/core_ext/time.rb: -------------------------------------------------------------------------------- 1 | class Time 2 | include Redistat::DateHelper 3 | end 4 | -------------------------------------------------------------------------------- /lib/redistat/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/date.rb -------------------------------------------------------------------------------- /lib/redistat/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/event.rb -------------------------------------------------------------------------------- /lib/redistat/finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/finder.rb -------------------------------------------------------------------------------- /lib/redistat/finder/date_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/finder/date_set.rb -------------------------------------------------------------------------------- /lib/redistat/key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/key.rb -------------------------------------------------------------------------------- /lib/redistat/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/label.rb -------------------------------------------------------------------------------- /lib/redistat/mixins/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/mixins/database.rb -------------------------------------------------------------------------------- /lib/redistat/mixins/date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/mixins/date_helper.rb -------------------------------------------------------------------------------- /lib/redistat/mixins/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/mixins/options.rb -------------------------------------------------------------------------------- /lib/redistat/mixins/synchronize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/mixins/synchronize.rb -------------------------------------------------------------------------------- /lib/redistat/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/model.rb -------------------------------------------------------------------------------- /lib/redistat/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/result.rb -------------------------------------------------------------------------------- /lib/redistat/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/scope.rb -------------------------------------------------------------------------------- /lib/redistat/summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/lib/redistat/summary.rb -------------------------------------------------------------------------------- /lib/redistat/version.rb: -------------------------------------------------------------------------------- 1 | module Redistat 2 | VERSION = "0.5.0" 3 | end 4 | -------------------------------------------------------------------------------- /redistat.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/redistat.gemspec -------------------------------------------------------------------------------- /spec/buffer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/buffer_spec.rb -------------------------------------------------------------------------------- /spec/collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/collection_spec.rb -------------------------------------------------------------------------------- /spec/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/connection_spec.rb -------------------------------------------------------------------------------- /spec/core_ext/hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/core_ext/hash_spec.rb -------------------------------------------------------------------------------- /spec/database_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/database_spec.rb -------------------------------------------------------------------------------- /spec/date_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/date_spec.rb -------------------------------------------------------------------------------- /spec/db/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/event_spec.rb -------------------------------------------------------------------------------- /spec/finder/date_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/finder/date_set_spec.rb -------------------------------------------------------------------------------- /spec/finder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/finder_spec.rb -------------------------------------------------------------------------------- /spec/key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/key_spec.rb -------------------------------------------------------------------------------- /spec/label_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/label_spec.rb -------------------------------------------------------------------------------- /spec/model_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/model_helper.rb -------------------------------------------------------------------------------- /spec/model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/model_spec.rb -------------------------------------------------------------------------------- /spec/options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/options_spec.rb -------------------------------------------------------------------------------- /spec/redis-test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/redis-test.conf -------------------------------------------------------------------------------- /spec/result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/result_spec.rb -------------------------------------------------------------------------------- /spec/scope_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/scope_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/summary_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/summary_spec.rb -------------------------------------------------------------------------------- /spec/synchronize_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/synchronize_spec.rb -------------------------------------------------------------------------------- /spec/thread_safety_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimeh/redistat/HEAD/spec/thread_safety_spec.rb --------------------------------------------------------------------------------