README.md in phoenix-cli-0.0.1 vs README.md in phoenix-cli-0.0.2
- old
+ new
@@ -1,22 +1,42 @@
-phoenix-cli
+Phoenix-cli
=================
Phoenix Pretty CLI
+Use Phoenix Framework with the same friendly rails interface
## Setup
1. Install `gem install phoenix-cli`.
-## Usage
+## Getting Started
-_Fill in with gem usage information._
+1. Install Phoenix at the command prompt if you haven't yet:
+ $ phoenix install
+
+2. At the command prompt, create a new Phoenix application:
+ $ phoenix new myapp
+
+ where "myapp" is the application name.
+
+3. Install the phoenix dependencies
+ $ phoenix deps
+
+4. Change directory to myapp and start the web server:
+ $ cd myapp
+ $ phoenix server
+
+
## Development
When hacking on this gem, the REPL `pry` comes in handy. You can load the
contents of the gem with `pry --gem`.
To test the CLI, run
ruby -Ilib bin/phoenix-cli
+
+## License
+
+Phoenix CLI is released under the [MIT License](http://www.opensource.org/licenses/MIT).