README.md in guard-rails-assets-0.0.3 vs README.md in guard-rails-assets-0.0.4

- old
+ new

@@ -1,9 +1,9 @@ # Guard::RailsAssets -Guard::RailsAssets compiles all the assets in Rails 3.1 application automatically when files are modified. +Guard::RailsAssets compiles the assets in Rails 3.1 application automatically when files are modified. Tested on MRI Ruby 1.9.2 (please report if it works on your platform). If you have any questions please contact me [@dnagir](http://www.ApproachE.com). @@ -40,14 +40,14 @@ ## Guardfile and Options In addition to the standard configuration, this Guard has options to specify when exacly to precompile assets. -- `:start` - compile assets when the guard starts (default) -- `:reload` - compile assets when the guard quites (Ctrl-C) (not enabled) -- `:all` - compile assets when running all the guard (Ctrl-/) (default) -- `:change` - compile assets when watched files change (default) +- `:start` - compile assets when the guard starts (enabled by default) +- `:change` - compile assets when watched files change (enabled by default) +- `:reload` - compile assets when the guard quites (Ctrl-C) (not enabled by default) +- `:all` - compile assets when running all the guards (Ctrl-/) (not enabled by default) For example: ```ruby @@ -60,11 +60,11 @@ guard 'rails-assets', :run_on => [:start, :change] do watch(%r{^app/assets/.+$}) end # This is the default behaviour -guard 'rails-assets', :run_on => [:start, :change, :all] do +guard 'rails-assets', :run_on => [:start, :change] do watch(%r{^app/assets/.+$}) end ``` ## Development @@ -73,9 +73,26 @@ - Report issues and feature requests to [GitHub Issues](https://github.com/dnagir/guard-rails-assets/issues) Pull requests are very welcome! -## License +## Licensed under WTFPL -MIT License +``` + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2011 Dmytrii Nagirniak <dnagir@gmail.com> + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. +``` + + +