Go to file
Jason Lee 4317ba3ed1 Merge pull request #6 from lostpupil/master
fix typo
2015-10-28 09:54:00 +08:00
app/controllers/ru_captcha First commit. 2015-10-26 14:09:39 +08:00
config fix locales 2015-10-27 00:27:04 +08:00
lib Verify fail if captcha was blank in session or params. 2015-10-26 22:58:16 +08:00
spec Add some test case 2015-10-26 21:55:46 +08:00
.gitignore Initial commit 2015-10-26 14:07:48 +08:00
CHANGELOG.md Use xxx_url to fix bad captcha URL for enabled case. 2015-10-26 20:53:30 +08:00
Gemfile Add some test case 2015-10-26 21:55:46 +08:00
Gemfile.lock Add some test case 2015-10-26 21:55:46 +08:00
LICENSE Initial commit 2015-10-26 14:07:48 +08:00
README.md Merge pull request #6 from lostpupil/master 2015-10-28 09:54:00 +08:00
rucaptcha.gemspec Update Image style and colors, and fix Captcha class missing bug. 2015-10-26 17:40:59 +08:00

README.md

RuCaptcha

Gem Version

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

中文介绍和使用说明

Requirements

  • ImageMagick

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
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>

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

TODO