rucaptcha/README.md

87 lines
1.8 KiB
Markdown
Raw Normal View History

2015-10-26 06:09:39 +00:00
# RuCaptcha
2015-10-26 11:58:17 +00:00
[![Gem Version](https://badge.fury.io/rb/rucaptcha.svg)](https://badge.fury.io/rb/rucaptcha)
2015-10-26 06:09:39 +00:00
2015-10-26 09:56:47 +00:00
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.
2015-10-26 06:09:39 +00:00
2015-10-26 11:56:00 +00:00
**There is NO: RMagick**
2015-10-26 11:53:07 +00:00
2015-10-26 06:09:39 +00:00
Idea by: https://ruby-china.org/topics/20558#reply4
2015-10-26 12:25:54 +00:00
[中文介绍和使用说明](https://ruby-china.org/topics/27832)
2015-10-26 06:09:39 +00:00
### Requirements
- ImageMagick
2015-10-26 10:04:35 +00:00
### Example
![simple4](https://cloud.githubusercontent.com/assets/5518/10726106/9442b1fe-7c0b-11e5-8c06-f88fce5e7a58.png) ![simple3](https://cloud.githubusercontent.com/assets/5518/10726119/a844dfce-7c0b-11e5-99c3-a818f3ef3dd2.png)
2015-10-26 06:09:39 +00:00
### Usage
Put rucaptcha in your `Gemfile`:
```
gem 'rucaptcha'
```
Create `config/initializes/rucaptcha.rb`
```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
```
Controller `app/controller/account_controller.rb`
```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`
```erb
<form>
...
<div class="form-group">
<%= rucaptcha_input_tag(class: 'form-control', placeholder: 'Input Captcha') %>
<%= rucaptcha_image_tag(alt: 'Captcha') %>
</div>
...
</form>
```
2015-10-26 12:22:27 +00:00
## Test skip captcha validation
```rb
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
- Use [rtesseract](https://github.com/dannnylo/rtesseract) to test OCR.