Sha256: f4e61f9b59439903be5b3b4850c3debd2492b8bbd209c64e00bb281553e75e8d

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'redis/key_hash/version'

Gem::Specification.new do |spec|
  spec.name          = 'redis-key_hash'
  spec.version       = Redis::KeyHash::VERSION
  spec.authors       = ['jhwillett']
  spec.email         = ['jhw@prosperworks.com']
  spec.license       = 'MIT'

  spec.summary       = 'Tests Redis Cluster key hash slot agreement'
  spec.homepage      = 'https://github.com/ProsperWorks/redis-key_hash'
  spec.description   =
    'Hash slot tests for Redis Cluster and RedisLabs Enterprise Cluster.'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.require_paths = ['lib']

  # We use "foo: bar" syntax liberally, not the older ":foo => bar".
  # Possibly other Ruby 2-isms as well.
  #
  spec.required_ruby_version = '>= 2.1'

  spec.add_development_dependency 'bundler',  '~> 1.16.0'
  spec.add_development_dependency 'minitest', '~> 5.11.3'
  spec.add_development_dependency 'rake',     '~> 12.3.1'
  spec.add_development_dependency 'rubocop',  '~> 0.54.0'

  # This gem is pure Ruby, no weird dependencies.
  #
  spec.platform = Gem::Platform::RUBY
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redis-key_hash-0.0.5 redis-key_hash.gemspec