1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Source: ruby-simple-captcha2
Section: ruby
Priority: optional
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: R.Harish Navnit <harishnavnit@gmail.com>,
Pirate Praveen <praveen@debian.org>
Build-Depends: debhelper-compat (= 12),
gem2deb
Standards-Version: 4.5.0
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-simple-captcha2.git
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-simple-captcha2
Homepage: https://github.com/pludoni/simple-captcha
XS-Ruby-Versions: all
Package: ruby-simple-captcha2
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ruby | ruby-interpreter,
ruby-rails (>= 4.1),
${misc:Depends},
${shlibs:Depends}
Description: simplest and a robust captcha plugin for rails
Available with Rails 3 + 4 or above provides backward compatibility. This
is a fork of the popular Rubygem ``simple_captcha`` which got abandoned.
.
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
rendering SimpleCaptcha DOM elements).
* Automated removal of 1 hour old unmatched simple_captcha data.
|