README.md in motion-redgreen-0.1.0 vs README.md in motion-redgreen-1.0.0
- old
+ new
@@ -2,12 +2,26 @@
Based on the https://github.com/mdks/rm-redgreen.
## Configuration
-You can specify the output style as follows:
+Add to your Gemfile and run `bundle install`:
```ruby
-app.redgreen_style = :full
+gem 'motion-redgreen'
```
-The available styles are *:focused* and *:full*.
\ No newline at end of file
+Optionally, specify the output style in your Rakefile:
+
+```ruby
+Motion::Project::App.setup do |app|
+ # ...
+ app.redgreen_style = :full # default: :focused, also can use :progress
+end
+```
+
+The available styles are `:focused`, `:full`, and `:progress`.
+
+Example of the `:progress` output style:
+
+![progress](https://cloud.githubusercontent.com/assets/1479215/5492859/065cab86-869a-11e4-8a75-c0c35ce332e0.png)
+