Sha256: ef10e6775579f8f56c7c92c2f70a56cb5e5ce3dc04b9f77e9b3400959557e79e

Contents?: true

Size: 859 Bytes

Versions: 1

Compression:

Stored size: 859 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     = ["fakeredis"]
  s.email       = ["guilleiguaran@gmail.com"]
  s.homepage    = "http://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.0 fakeredis.gemspec