README.rdoc in memcached-manager-0.2.3 vs README.rdoc in memcached-manager-0.3.0
- old
+ new
@@ -22,10 +22,24 @@
memcached-manager --memcached-host foo.bar --memcached-port 1337
== Plugging memcached manager to an existing Rails app
-Todo.
+Just mount it in **config/routes.rb**:
+
+```ruby
+mount MemcachedManager::Routes, :at => '/mm'
+
+```
+So it will be accessible in the /mm route of your application.
+
+
+If you want to specify a different config than the defaults(localhost:11211) add an `.env` file with the following:
+
+```
+memcached_host: foo.bar
+memcached_port: 1337
+```
== Requirements
Ruby >= 1.9
Memcached (of course)