Sha256: 76fa77485b4898b234dc8af2877116cf99fa05c658f984fd201bf9fcf34d1cf8

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

$LOAD_PATH << File.expand_path('lib', __dir__)
require 'mock_redis/version'

Gem::Specification.new do |s|
  s.name        = 'mock_redis'
  s.version     = MockRedis::VERSION
  s.license     = 'MIT'
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Brigade Engineering', 'Samuel Merritt']
  s.email       = ['eng@brigade.com']
  s.homepage    = 'https://github.com/brigade/mock_redis'
  s.summary     = 'Redis mock that just lives in memory; useful for testing.'

  s.description = <<-MSG.strip.gsub(/\s+/, ' ')
   Instantiate one with `redis = MockRedis.new` and treat it like you would a
   normal Redis object. It supports all the usual Redis operations.
  MSG

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- spec/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  s.require_paths = ['lib']

  s.required_ruby_version = '>= 2.2'

  s.add_development_dependency 'rake', '>= 10', '< 12'
  s.add_development_dependency 'redis', '~> 3.3.0'
  s.add_development_dependency 'rspec', '~> 3.0'
  s.add_development_dependency 'rspec-its', '~> 1.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mock_redis-0.19.0 mock_redis.gemspec