README.md in roadie-3.0.0 vs README.md in roadie-3.0.1

- old
+ new

@@ -105,11 +105,11 @@ Example: ```ruby # /home/user/foo/stylesheets/primary.css -body { color: blue; } +body { color: green; } # /home/user/foo/script.rb html = <<-HTML <html> <head> @@ -174,11 +174,11 @@ Roadie::Stylesheet.new("user #{user.id} stylesheet", user.stylesheet) end end def find_stylesheet!(name) - find_stylesheet(name) or raise Roadie::CssNotFound.new(name) + find_stylesheet(name) or raise Roadie::CssNotFound.new(name, "does not match a user stylesheet", self) end # Instead of implementing #find_stylesheet!, you could also: # include Roadie::AssetProvider end @@ -241,11 +241,11 @@ [(Build status)](http://travis-ci.org/#!/Mange/roadie) Let me know if you want any other VM supported officially. -Rubinius support is experimental since it it currently hindered by a Rubinius bug that will probably be fixed shortly. +Rubinius support is experimental since it is currently hindered by a Rubinius bug that will probably be fixed shortly. ### Versioning ### This project follows [Semantic Versioning](http://semver.org/) and has been since version 1.0.0. @@ -272,10 +272,10 @@ Documentation ------------- * [Online documentation for gem](http://rubydoc.info/gems/roadie/frames) * [Online documentation for master](http://rubydoc.info/github/Mange/roadie/master/frames) -* [Online documentation for Roadie 2.4](http://rubydoc.info/gems/roadie/2.4/frames) +* [Online documentation for Roadie 2.4.3](http://rubydoc.info/gems/roadie/2.4.3/frames) * [Changelog](https://github.com/Mange/roadie/blob/master/Changelog.md) Running specs -------------