easy_captcha 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -41,7 +41,7 @@ You can write this in "config/initializers/easy_captcha.rb", if you want to cust
41
41
  # Implode
42
42
  # config.implode = 0.1
43
43
 
44
- # Gaussian Blur
44
+ # Blur
45
45
  # config.blur = true
46
46
  # config.blur_radius = 1
47
47
  # config.blur_sigma = 2
@@ -58,6 +58,9 @@ You can write this in "config/initializers/easy_captcha.rb", if you want to cust
58
58
  <p><%= submit_tag 'Validate' %></p>
59
59
  <% end %>
60
60
 
61
+ == Example
62
+ You find a sample app under: http://github.com/traxanos/easy_captcha_sample
63
+
61
64
  == Maintainers
62
65
 
63
66
  * Marco Scholl (http://github.com/traxanos)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.1.5
data/easy_captcha.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{easy_captcha}
8
- s.version = "0.1.4"
8
+ s.version = "0.1.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Marco Scholl"]
data/lib/easy_captcha.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'rmagick'
1
2
  require 'rails'
2
3
  require 'action_controller'
3
4
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 4
9
- version: 0.1.4
8
+ - 5
9
+ version: 0.1.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Marco Scholl