README.md in fakeredis-0.3.2 vs README.md in fakeredis-0.3.3
- old
+ new
@@ -1,6 +1,6 @@
-# FakeRedis [![Build Status](http://travis-ci.org/guilleiguaran/fakeredis.png)](http://travis-ci.org/guilleiguaran/fakeredis)
+# FakeRedis [![Build Status](https://secure.travis-ci.org/guilleiguaran/fakeredis.png)](http://travis-ci.org/guilleiguaran/fakeredis)
This a fake implementation of redis-rb for machines without Redis or test environments
## Installation
@@ -11,10 +11,22 @@
Add it to your Gemfile:
gem "fakeredis"
+## Versions
+
+FakeRedis currently supports redis-rb v3.0.0 or later, if you are using
+redis-rb v2.2.x install the version 0.3.x:
+
+ gem install fakeredis -v "~> 0.3.0"
+
+or use the branch 0-3-x on your Gemfile:
+
+ gem "fakeredis", :git => "git://github.com/guilleiguaran/fakeredis.git", :branch => "0-3-x"
+
+
## Usage
You can use FakeRedis without any changes:
require "fakeredis"
@@ -36,11 +48,11 @@
# Gemfile
group :test do
gem "rspec"
gem "fakeredis", :require => "fakeredis/rspec"
- end
+ end
Or:
# spec/support/fakeredis.rb
require 'fakeredis/rspec'
@@ -50,9 +62,11 @@
* [dim](https://github.com/dim)
* [czarneckid](https://github.com/czarneckid)
* [obrie](https://github.com/obrie)
* [jredville](https://github.com/jredville)
* [redsquirrel](https://github.com/redsquirrel)
+* [dpick](https://github.com/dpick)
+* [caius](https://github.com/caius)
* [Travis-CI](http://travis-ci.org/) (Travis-CI also uses Fakeredis in its tests!!!)
## Contributing to FakeRedis