captchator 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +17 -0
- data/lib/captchator/version.rb +1 -1
- data/test/dummy/log/test.log +4 -0
- metadata +8 -19
data/README.rdoc
CHANGED
@@ -1,3 +1,20 @@
|
|
1
1
|
= Captchator
|
2
|
+
The captchator gem provides a seamless captcha interface for Rails applications with easily readable captcha images. Thanks to http://captchator.com/ for the library.
|
3
|
+
|
4
|
+
= Installation
|
5
|
+
gem 'captchator'
|
6
|
+
|
7
|
+
= Usage
|
8
|
+
In your view
|
9
|
+
<%= captchator_tags %>
|
10
|
+
|
11
|
+
In your controller
|
12
|
+
verify_captchator # returns true or false
|
13
|
+
|
14
|
+
-or- if you would like seamless integration with your model errors you can call
|
15
|
+
save_with_captchator(@my_model)
|
16
|
+
|
17
|
+
= Contact
|
18
|
+
if you have any questions, please contact me (gabeodess@gmail.com).
|
2
19
|
|
3
20
|
This project rocks and uses MIT-LICENSE.
|
data/lib/captchator/version.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
@@ -68,3 +68,7 @@ Completed 200 OK in 84ms (Views: 82.8ms | ActiveRecord: 0.3ms)
|
|
68
68
|
Rendered users/_form.html.erb (13.7ms)
|
69
69
|
Rendered users/new.html.erb within layouts/application (26.9ms)
|
70
70
|
Completed 200 OK in 48ms (Views: 47.0ms | ActiveRecord: 0.3ms)
|
71
|
+
Processing by UsersController#new as HTML
|
72
|
+
Rendered users/_form.html.erb (13.4ms)
|
73
|
+
Rendered users/new.html.erb within layouts/application (22.5ms)
|
74
|
+
Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.3ms)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: captchator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,22 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-01-
|
12
|
+
date: 2012-01-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: rails
|
16
|
-
requirement: &2156942660 !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 3.1.3
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: *2156942660
|
25
14
|
- !ruby/object:Gem::Dependency
|
26
15
|
name: sqlite3
|
27
|
-
requirement: &
|
16
|
+
requirement: &2157150900 !ruby/object:Gem::Requirement
|
28
17
|
none: false
|
29
18
|
requirements:
|
30
19
|
- - ! '>='
|
@@ -32,9 +21,9 @@ dependencies:
|
|
32
21
|
version: '0'
|
33
22
|
type: :development
|
34
23
|
prerelease: false
|
35
|
-
version_requirements: *
|
36
|
-
description: Due to many unrequited complaints to the recaptcha
|
37
|
-
|
24
|
+
version_requirements: *2157150900
|
25
|
+
description: Due to many unrequited complaints to the recaptcha team with regard to
|
26
|
+
its unreadability for real human users, this gem offers a more readable selection
|
38
27
|
of captcha images.
|
39
28
|
email:
|
40
29
|
- gabeodess@gmail.com
|
@@ -114,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
114
103
|
version: '0'
|
115
104
|
segments:
|
116
105
|
- 0
|
117
|
-
hash: -
|
106
|
+
hash: -3702094505657431541
|
118
107
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
108
|
none: false
|
120
109
|
requirements:
|
@@ -123,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
112
|
version: '0'
|
124
113
|
segments:
|
125
114
|
- 0
|
126
|
-
hash: -
|
115
|
+
hash: -3702094505657431541
|
127
116
|
requirements: []
|
128
117
|
rubyforge_project:
|
129
118
|
rubygems_version: 1.8.15
|