README.md in tiny-rails-0.1.0 vs README.md in tiny-rails-0.1.1
- old
+ new
@@ -16,11 +16,11 @@
Although the generated application code could be used on a production server,
the idea is to try to give you a really basic application to try out new Rails
gems, create spikes and to provide an isolated small Rails environment for
reproducing bugs to support bug reports.
-You could also use this to create a single page application with all rails
+You could also use this to create a single page application with Rails
features like code reloading and the asset pipeline without having to set up
a Sinatra application from the ground app.
## Usage
@@ -37,12 +37,12 @@
create config.ru
chmod server
```
This will give you a pretty basic application that you can run with `rackup`
-or you prefferend server. It even supports code reloading for the generated
-controller!
+or you preferred server. It even supports code reloading for the generated
+controller, models and mailers!
You can also fire up a console to play around with the generated app running
`tiny-rails console`. If you want to use Pry, you can just add the `pry-rails`
gem to your Gemfile.
@@ -73,9 +73,10 @@
* [activerecord](https://github.com/fgrehm/tiny-rails/blob/master/addons/activerecord.rb)
* [coffeescript](https://github.com/fgrehm/tiny-rails/blob/master/addons/coffeescript.rb)
* [jquery](https://github.com/fgrehm/tiny-rails/blob/master/addons/jquery.rb)
* [client_side_validations](https://github.com/fgrehm/tiny-rails/blob/master/addons/client_side_validations.rb)
+* [email](https://github.com/fgrehm/tiny-rails/blob/master/addons/email.rb)
### Building your own addon
The API for writing addon scripts are based on Rails'