Sha256: 88ebbc0255df7456b7b4ca3c9dcefcb167b55c3f5dff8f60dcd77646ba1289de
Contents?: true
Size: 868 Bytes
Versions: 1
Compression:
Stored size: 868 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://github.com/guilleiguaran/fakeredis" s.summary = %q{Fake redis-rb for your tests} s.description = %q{Fake implementation of redis-rb for machines without Redis or test environments} s.rubyforge_project = "fakeredis" 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_development_dependency(%q<rspec>, [">= 2.0.0"]) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fakeredis-0.1.1 | fakeredis.gemspec |