├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── example ├── blocking.rb └── non-blocking.rb ├── lib ├── redis-queue.rb └── redis │ └── queue.rb ├── redis-queue.gemspec └── spec ├── redis_queue_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/Rakefile -------------------------------------------------------------------------------- /example/blocking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/example/blocking.rb -------------------------------------------------------------------------------- /example/non-blocking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/example/non-blocking.rb -------------------------------------------------------------------------------- /lib/redis-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/lib/redis-queue.rb -------------------------------------------------------------------------------- /lib/redis/queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/lib/redis/queue.rb -------------------------------------------------------------------------------- /redis-queue.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/redis-queue.gemspec -------------------------------------------------------------------------------- /spec/redis_queue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/spec/redis_queue_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taganaka/redis-queue/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------