README.md in mama_cass-0.0.2 vs README.md in mama_cass-0.0.3
- old
+ new
@@ -1,8 +1,8 @@
# Mama Cass
-Mama Cass is a Rails 3 generator to install [cassandra](http://cassandra.apache.org/). It also includes a command line application for starting cassandra and logging into the cassandra console.
+Mama Cass is a Rails 3 generator to install [cassandra](http://cassandra.apache.org/). It also includes rake tasks for starting cassandra and logging into the cassandra console.
## Installation
Add mama cass to your Gemfile:
@@ -14,37 +14,36 @@
<pre>
bundle install
</pre>
-Run the generator to install cassandra (currently version 0.6.0) in your app:
+Run the generator to install cassandra (currently version 0.7.0) in your app:
<pre>
rails g mama_cass:install
</pre>
This installs the following directories and files:
* cassandra/server - cassandra server (version 0.6.0)
* config/cassandra.yml - includes definitions for development and test keyspaces
* config/cassandra/cassandra.in.sh - server start up options
-* config/cassandra/log4j.properties - log4j configuration
-* config/cassandra/storage-conf.xml - keyspace definitions
+* config/cassandra/cassandra.yaml - keyspace definitions
* config/initializers/cassandra.rb - cassandra connection object setup
-## Command line app
+## Rake tasks
<pre>
-mama_cass start
+rake cass:start
</pre>
Start cassandra. Cassandra is run in the foreground and should be stopped via <code>Ctrl+C</code>.
<pre>
-mama_cass console
+rake cass:console
</pre>
-Start the cassandra console. This will try to connect to the cassandra started via <code>mama_cass start</code>.
+Start the cassandra console. This will try to connect to the cassandra started via <code>rake cass:start</code>.
## LICENSE
Released under the MIT License. See the LICENSE file for further details.