README.textile in hominid-2.0.0 vs README.textile in hominid-2.0.1

- old
+ new

@@ -2,11 +2,11 @@ Hominid is a Ruby gem that provides a wrapper for interacting with the "Mailchimp":http://www.mailchimp.com email marketing service API ("version 1.2":http://www.mailchimp.com/api/1.2/). h2. Installation -<pre><code>sudo gem install hominid, :version => '>= 2.0.0', :source => "http://gemcutter.org"</code></pre> +<pre><code>sudo gem install hominid, :version => '>= 2.0.1', :source => "http://gemcutter.org"</code></pre> Hominid is hosted at "Gemcutter":http://gemcutter.org. Be sure that you have the Gemcutter gem installed if you are having trouble installing Hominid: <pre><code>sudo gem install gemcutter gem tumble</code></pre> @@ -106,10 +106,10 @@ h2. Syncing Your Application If you are integrating an application with Mailchimp, Hominid will provide a way for your app to connect with your Mailchimp account. However, it does not provide a way for Mailchimp to connect to your application, which is why Mailchimp has implemented "web hooks":http://www.mailchimp.com/api/webhooks/. -The _Hominid::Webhook class helps with receiving <tt>POST</tt> data from a Mailchimp webhook: +The _Hominid::Webhook_ class helps with receiving <tt>POST</tt> data from a Mailchimp webhook: <pre><code>hook = Hominid::Webhook.new(params) case hook.event when "subscribe" user = User.find_by_email(hook.email)