Readme.md in toadhopper-0.4 vs Readme.md in toadhopper-0.5

- old
+ new

@@ -1,16 +1,15 @@ A base library for [Hoptoad](http://www.hoptoadapp.com/) error reporting. -Toadhopper can be used to report plain old Ruby exceptions or to build a library specific gem, such as the yet-to-be-built toadhopper-sinatra and toadhopper-rack gems (they're next on my list). +Toadhopper can be used to report plain old Ruby exceptions, or to build a framework-specific gem such as [toadhopper-sinatra](http://github.com/toolmantim/toadhopper-sinatra). -## Example - - require 'rubygems' - - gem 'toadhopper' require 'toadhopper' Toadhopper.api_key = "YOURAPIKEY" error = begin; raise "Kaboom!"; rescue => e; e; end puts Toadhopper.post!(error) + +You can install it via rubygems: + + gem install toadhopper