README.md in fakeredis-0.1.4 vs README.md in fakeredis-0.2.0
- old
+ new
@@ -13,23 +13,30 @@
gem "fakeredis"
## Usage
-You can use FakeRedis::Redis similary as you use redis gem:
+You can use FakeRedis without any changes:
require "fakeredis"
- redis = FakeRedis::Redis.new
+ redis = Redis.new
>> redis.set "foo", "bar"
=> "OK"
>> redis.get "foo"
=> "bar"
Read [redis-rb](https://github.com/ezmobius/redis-rb) documentation and
[Redis](http://redis.io) homepage for more info about commands
+
+
+## Acknowledgements
+
+* [czarneckid](https://github.com/czarneckid)
+* [obrie](https://github.com/obrie)
+* [Travis-CI](http://travis-ci.org/) (Travis-CI also uses Fakeredis in its tests!!!)
## Contributing to FakeRedis
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet