README.md in fakeredis-0.5.0 vs README.md in fakeredis-0.6.0
- old
+ new
@@ -37,11 +37,11 @@
=> "OK"
>> redis.get "foo"
=> "bar"
-Read [redis-rb](https://github.com/ezmobius/redis-rb) documentation and
+Read [redis-rb](https://github.com/redis/redis-rb) documentation and
[Redis](http://redis.io) homepage for more info about commands
## Usage with RSpec
Require this either in your Gemfile or in RSpec's support scripts. So either:
@@ -55,10 +55,26 @@
Or:
# spec/support/fakeredis.rb
require 'fakeredis/rspec'
+## Usage with Minitest
+
+Require this either in your Gemfile or in Minitest's support scripts. So
+either:
+
+ # Gemfile
+ group :test do
+ gem "minitest"
+ gem "fakeredis", :require => "fakeredis/minitest"
+ end
+
+Or:
+
+ # test/test_helper.rb (or test/minitest_config.rb)
+ require 'fakeredis/minitest'
+
## Acknowledgements
* [dim](https://github.com/dim)
* [czarneckid](https://github.com/czarneckid)
* [obrie](https://github.com/obrie)
@@ -80,7 +96,7 @@
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
## Copyright
-Copyright (c) 2011-2014 Guillermo Iguaran. See LICENSE for
+Copyright (c) 2011-2016 Guillermo Iguaran. See LICENSE for
further details.