Sha256: 771160184a2308e7639e98bc3aecc9b1d92a275d88cf68853f62b87130b019c0

Contents?: true

Size: 871 Bytes

Versions: 3

Compression:

Stored size: 871 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 for testing purposes}

  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

3 entries across 3 versions & 1 rubygems

Version Path
fakeredis-0.1.4 fakeredis.gemspec
fakeredis-0.1.3 fakeredis.gemspec
fakeredis-0.1.2 fakeredis.gemspec