README.rdoc in wxianfeng_simple_captcha-0.1.0 vs README.rdoc in wxianfeng_simple_captcha-0.2.0
- old
+ new
@@ -1,32 +1,23 @@
=SimpleCaptcha
-SimpleCaptcha is the simplest and a robust captcha plugin. Its implementation requires
-adding up a single line in views and in controllers/models.
-SimpleCaptcha is available to be used with Rails 3 or above and also it provides the
-backward compatibility with previous versions of Rails.
+SimpleCaptcha for Rails 3
-==Features
-
-* Zero FileSystem usage(secret code moved to db-store and image storage removed).
-* Provides various image styles.
-* Provides three level of complexity of images.
-* Works absolutely fine in distributed environment(session and db based implementation works fine in distributed environment).
-* Implementation is as easy as just writing a single line in your view. "<%= show_simple_captcha %>" within the 'form' tags.
-* Flexible DOM and CSS handling(There is a separate view partial for rednering SimpleCaptcha DOM elements).
-* Automated removal of 1 hour old unmatched simple_captcha data.
-
==Requirements
* {Ruby}[http://ruby-lang.org/] >= 1.8.7
* {Rails}[http://github.com/rails/rails] >= 3
* ImageMagick should be installed on your machine to use this plugin.
visit http://www.imagemagick.org/script/index.php for more details.
==Installation
- gem 'simple_captcha', :git => 'git://github.com/wxianfeng/simple-captcha.git'
+ rails < 3.1
+ gem 'wxianfeng_simple_captcha', '0.1.0' , require: 'simple_captcha'
+
+ rails >= 3.1
+ gem 'wxianfeng_simple_captcha' , '0.2.0' , require: 'simple_captcha'
==Setup
After installation, follow these simple steps to setup the plugin. The setup will depend
on the version of rails your application is using.
@@ -207,17 +198,5 @@
user: "The secret Image and code were different"
==Who's who?
Enjoy the simplest captcha implementation.
-
-Author: Sur
-
-Blog: http://expressica.com
-
-Contact: sur.max@gmail.com
-
-Plugin Homepage: http://expressica.com/simple_captcha
-
-Plugin update for rails 3: http://github.com/galetahub
-
-Any feedback/comment/issue/donation is welcome!