--- !ruby/object:Gem::Specification
name: redis
version: !ruby/object:Gem::Version
  version: 3.0.0
  prerelease: 
platform: ruby
authors:
- Ezra Zygmuntowicz
- Taylor Weibley
- Matthew Clark
- Brian McKinney
- Salvatore Sanfilippo
- Luca Guidi
- Michel Martens
- Damian Janowski
- Pieter Noordhuis
autorequire: 
bindir: bin
cert_chain: []
date: 2012-05-23 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
  name: rake
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
description: ! "    A Ruby client that tries to match Redis' API one-to-one, while
  still\n    providing an idiomatic interface. It features thread-safety,\n    client-side
  sharding, pipelining, and an obsession for performance.\n"
email:
- redis-db@googlegroups.com
executables: []
extensions: []
extra_rdoc_files: []
files:
- .gitignore
- .order
- .travis.yml
- .travis/Gemfile
- .yardopts
- CHANGELOG.md
- LICENSE
- README.md
- Rakefile
- benchmarking/logging.rb
- benchmarking/pipeline.rb
- benchmarking/speed.rb
- benchmarking/suite.rb
- benchmarking/worker.rb
- examples/basic.rb
- examples/dist_redis.rb
- examples/incr-decr.rb
- examples/list.rb
- examples/pubsub.rb
- examples/sets.rb
- examples/unicorn/config.ru
- examples/unicorn/unicorn.rb
- lib/redis.rb
- lib/redis/client.rb
- lib/redis/connection.rb
- lib/redis/connection/command_helper.rb
- lib/redis/connection/hiredis.rb
- lib/redis/connection/registry.rb
- lib/redis/connection/ruby.rb
- lib/redis/connection/synchrony.rb
- lib/redis/distributed.rb
- lib/redis/errors.rb
- lib/redis/hash_ring.rb
- lib/redis/pipeline.rb
- lib/redis/subscribe.rb
- lib/redis/version.rb
- redis.gemspec
- test/blocking_commands_test.rb
- test/command_map_test.rb
- test/commands_on_hashes_test.rb
- test/commands_on_lists_test.rb
- test/commands_on_sets_test.rb
- test/commands_on_sorted_sets_test.rb
- test/commands_on_strings_test.rb
- test/commands_on_value_types_test.rb
- test/connection_handling_test.rb
- test/db/.gitignore
- test/distributed_blocking_commands_test.rb
- test/distributed_commands_on_hashes_test.rb
- test/distributed_commands_on_lists_test.rb
- test/distributed_commands_on_sets_test.rb
- test/distributed_commands_on_sorted_sets_test.rb
- test/distributed_commands_on_strings_test.rb
- test/distributed_commands_on_value_types_test.rb
- test/distributed_commands_requiring_clustering_test.rb
- test/distributed_connection_handling_test.rb
- test/distributed_internals_test.rb
- test/distributed_key_tags_test.rb
- test/distributed_persistence_control_commands_test.rb
- test/distributed_publish_subscribe_test.rb
- test/distributed_remote_server_control_commands_test.rb
- test/distributed_scripting_test.rb
- test/distributed_sorting_test.rb
- test/distributed_test.rb
- test/distributed_transactions_test.rb
- test/encoding_test.rb
- test/error_replies_test.rb
- test/helper.rb
- test/helper_test.rb
- test/internals_test.rb
- test/lint/blocking_commands.rb
- test/lint/hashes.rb
- test/lint/lists.rb
- test/lint/sets.rb
- test/lint/sorted_sets.rb
- test/lint/strings.rb
- test/lint/value_types.rb
- test/persistence_control_commands_test.rb
- test/pipelining_commands_test.rb
- test/publish_subscribe_test.rb
- test/remote_server_control_commands_test.rb
- test/scripting_test.rb
- test/sorting_test.rb
- test/support/connection/hiredis.rb
- test/support/connection/ruby.rb
- test/support/connection/synchrony.rb
- test/support/redis_mock.rb
- test/support/wire/synchrony.rb
- test/support/wire/thread.rb
- test/synchrony_driver.rb
- test/test.conf
- test/thread_safety_test.rb
- test/transactions_test.rb
- test/unknown_commands_test.rb
- test/url_param_test.rb
homepage: https://github.com/redis/redis-rb
licenses: []
post_install_message: 
rdoc_options: []
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: '0'
required_rubygems_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: '0'
requirements: []
rubyforge_project: 
rubygems_version: 1.8.23
signing_key: 
specification_version: 3
summary: A Ruby client library for Redis
test_files:
- test/blocking_commands_test.rb
- test/command_map_test.rb
- test/commands_on_hashes_test.rb
- test/commands_on_lists_test.rb
- test/commands_on_sets_test.rb
- test/commands_on_sorted_sets_test.rb
- test/commands_on_strings_test.rb
- test/commands_on_value_types_test.rb
- test/connection_handling_test.rb
- test/db/.gitignore
- test/distributed_blocking_commands_test.rb
- test/distributed_commands_on_hashes_test.rb
- test/distributed_commands_on_lists_test.rb
- test/distributed_commands_on_sets_test.rb
- test/distributed_commands_on_sorted_sets_test.rb
- test/distributed_commands_on_strings_test.rb
- test/distributed_commands_on_value_types_test.rb
- test/distributed_commands_requiring_clustering_test.rb
- test/distributed_connection_handling_test.rb
- test/distributed_internals_test.rb
- test/distributed_key_tags_test.rb
- test/distributed_persistence_control_commands_test.rb
- test/distributed_publish_subscribe_test.rb
- test/distributed_remote_server_control_commands_test.rb
- test/distributed_scripting_test.rb
- test/distributed_sorting_test.rb
- test/distributed_test.rb
- test/distributed_transactions_test.rb
- test/encoding_test.rb
- test/error_replies_test.rb
- test/helper.rb
- test/helper_test.rb
- test/internals_test.rb
- test/lint/blocking_commands.rb
- test/lint/hashes.rb
- test/lint/lists.rb
- test/lint/sets.rb
- test/lint/sorted_sets.rb
- test/lint/strings.rb
- test/lint/value_types.rb
- test/persistence_control_commands_test.rb
- test/pipelining_commands_test.rb
- test/publish_subscribe_test.rb
- test/remote_server_control_commands_test.rb
- test/scripting_test.rb
- test/sorting_test.rb
- test/support/connection/hiredis.rb
- test/support/connection/ruby.rb
- test/support/connection/synchrony.rb
- test/support/redis_mock.rb
- test/support/wire/synchrony.rb
- test/support/wire/thread.rb
- test/synchrony_driver.rb
- test/test.conf
- test/thread_safety_test.rb
- test/transactions_test.rb
- test/unknown_commands_test.rb
- test/url_param_test.rb