Sha256: a39d9b88acd955d561ca6a43f7154f20cb3e01d1dbac42e8240879e244a1c271
Contents?: true
Size: 933 Bytes
Versions: 1
Compression:
Stored size: 933 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "fakeredis/version" Gem::Specification.new do |s| s.name = "fakeredis" s.version = FakeRedis::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Guillermo Iguaran"] s.email = ["guilleiguaran@gmail.com"] s.homepage = "https://guilleiguaran.github.com/fakeredis" s.license = "MIT" s.summary = %q{Fake (In-memory) driver for redis-rb.} s.description = %q{Fake (In-memory) driver for redis-rb. Useful for testing environment and machines without Redis.} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_runtime_dependency(%q<redis>, ["~> 2.2.0"]) s.add_development_dependency(%q<rspec>, [">= 2.0.0"]) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fakeredis-0.3.3 | fakeredis.gemspec |