Go to file
Jason Lee 0a0f272d9a Fix session value expires typo;
Captcha input field disable autocomplete, and set field type as  for shown correct keyboard on mobile view.
version 0.2.5
2015-11-02 18:09:16 +08:00
app/controllers/ru_captcha First commit. 2015-10-26 14:09:39 +08:00
config Adding locale for pt-BR language 2015-10-31 10:30:07 -02:00
lib Fix session value expires typo; 2015-11-02 18:09:16 +08:00
spec Add expire time, for protect Rails CookieSession Replay Attack. version 0.2.4 2015-11-02 16:59:42 +08:00
.gitignore Added file cache, can setup how many images you want generate by , 2015-10-30 11:32:02 +08:00
.travis.yml Try to fix Travis CI config 2015-10-29 18:11:49 +08:00
CHANGELOG.md Fix session value expires typo; 2015-11-02 18:09:16 +08:00
Gemfile Add .travis.yml 2015-10-29 17:50:09 +08:00
Gemfile.lock Add expire time, for protect Rails CookieSession Replay Attack. version 0.2.4 2015-11-02 16:59:42 +08:00
LICENSE Initial commit 2015-10-26 14:07:48 +08:00
README.md Added file cache, can setup how many images you want generate by , 2015-10-30 11:32:02 +08:00
Rakefile Add .travis.yml 2015-10-29 17:50:09 +08:00
rucaptcha.gemspec Add .travis.yml 2015-10-29 17:50:09 +08:00

README.md

RuCaptcha

Gem Version Build Status

This is a Captcha gem for Rails Applications. It runs an ImageMagick command to draw Captcha image - so it has NO performance issues or memory leak issues.

There is NO: RMagick

Idea by: https://ruby-china.org/topics/20558#reply4

中文介绍和使用说明

Feature

  • Only need ImageMagick, No RMagick, No mini_magick;
  • For Rails Application;
  • Simple, Easy to use;
  • File Caching for performance.

Requirements

  • ImageMagick

Ubuntu

sudo apt-get install imagemagick

Mac OS X

brew install imagemagick ghostscript

Example

rucaptcha1 rucaptcha2 rucaptcha3 rucaptcha4 rucaptcha5

Usage

Put rucaptcha in your Gemfile:

gem 'rucaptcha'

Create config/initializers/rucaptcha.rb

RuCaptcha.configure do
  # Number of chars, default: 4
  self.len = 4
  # Image width, default: 180
  self.width = 180
  # Image height, default: 48
  self.height = 48
  # Cache generated images in file store, this is config files limit, default: 100
  # set 0 to disable file cache.
  self.cache_limit = 100
end

Edit config/routes.rb, add the following code:

Rails.application.routes.draw do
  ...
  mount RuCaptcha::Engine => "/rucaptcha"
  ...
end

Controller app/controller/account_controller.rb

class AccountController < ApplicationController
  def create
    @user = User.new(params[:user])
    if verify_rucaptcha?(@user) && @user.save
      redirect_to root_path, notice: 'Sign up successed.'
    else
      render 'account/new'
    end
  end
end

View app/views/account/new.html.erb

<form>
  ...
  <div class="form-group">
    <%= rucaptcha_input_tag(class: 'form-control', placeholder: 'Input Captcha') %>
    <%= rucaptcha_image_tag(alt: 'Captcha') %>
  </div>
  ...
</form>

Write your test skip captcha validation

describe 'sign up and login', type: :feature do
  before do
    allow_any_instance_of(ActionController::Base).to receive(:verify_rucaptcha?).and_return(true)
  end

  it { ... }
end