Sha256: adf31c3023366d584992f02c800c7646762bb1256441e7f6938ec8fac552e3d2
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
$LOAD_PATH << File.expand_path('../lib', __FILE__) 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 = <<-EOS.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. EOS 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.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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
mock_redis-0.18.0 | mock_redis.gemspec |
mock_redis-0.17.3 | mock_redis.gemspec |
mock_redis-0.17.2 | mock_redis.gemspec |
mock_redis-0.17.1 | mock_redis.gemspec |
mock_redis-0.17.0 | mock_redis.gemspec |