README.md in invisible_captcha-0.1.1 vs README.md in invisible_captcha-0.1.3
- old
+ new
@@ -1,25 +1,31 @@
# Invisible Captcha
-Don't disturb users. Simple protection for ActiveModel forms using honeypot strategy.
+Simple protection for ActiveModel forms using honeypot strategy.
## Installation
Add this line to you Gemfile:
+
```
-gem 'invisible_captcha', :require => 'invisible_captcha', :git => 'git@github.com:markets/invisible_captcha.git'
+gem 'invisible_captcha', :require => 'invisible_captcha'
```
+
## Usage
In your form:
+
```ruby
<%= form_for(@topic) do |f| %>
+ ...
<%= invisible_captcha 'topic', 'subtitle' %>
+ ...
<% end %>
-
```
+
In your ActiveModel:
+
```ruby
attr_accessor :subtitle
validates :subtitle, :invisible_captcha => true
```
## License
-Invisible Captcha is released under the [MIT](http://opensource.org/licenses/MIT) License.
\ No newline at end of file
+Copyright (c) 2012 Marc Anguera. Invisible Captcha is released under the [MIT](http://opensource.org/licenses/MIT) License.