easy_captcha 0.1.3 → 0.1.4
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/VERSION +1 -1
- data/easy_captcha.gemspec +6 -7
- data/lib/easy_captcha.rb +3 -1
- data/spec/easy_captcha_spec.rb +7 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- metadata +7 -8
- data/install.rb +0 -0
- data/test/easy_captcha_test.rb +0 -8
- data/test/test_helper.rb +0 -3
- data/uninstall.rb +0 -0
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
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.
|
|
8
|
+
s.version = "0.1.4"
|
|
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"]
|
|
@@ -23,16 +23,15 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
"VERSION",
|
|
24
24
|
"easy_captcha.gemspec",
|
|
25
25
|
"init.rb",
|
|
26
|
-
"install.rb",
|
|
27
26
|
"lib/easy_captcha.rb",
|
|
28
27
|
"lib/easy_captcha/captcha.rb",
|
|
29
28
|
"lib/easy_captcha/controller.rb",
|
|
30
29
|
"lib/easy_captcha/controller_helpers.rb",
|
|
31
30
|
"lib/easy_captcha/view_helpers.rb",
|
|
32
31
|
"resources/captcha.ttf",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
32
|
+
"spec/easy_captcha_spec.rb",
|
|
33
|
+
"spec/spec.opts",
|
|
34
|
+
"spec/spec_helper.rb"
|
|
36
35
|
]
|
|
37
36
|
s.homepage = %q{http://github.com/traxanos/easy_captcha}
|
|
38
37
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
@@ -40,8 +39,8 @@ Gem::Specification.new do |s|
|
|
|
40
39
|
s.rubygems_version = %q{1.3.7}
|
|
41
40
|
s.summary = %q{Captcha-Plugin for Rails}
|
|
42
41
|
s.test_files = [
|
|
43
|
-
"
|
|
44
|
-
"
|
|
42
|
+
"spec/easy_captcha_spec.rb",
|
|
43
|
+
"spec/spec_helper.rb"
|
|
45
44
|
]
|
|
46
45
|
|
|
47
46
|
if s.respond_to? :specification_version then
|
data/lib/easy_captcha.rb
CHANGED
data/spec/spec.opts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--color
|
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 4
|
|
9
|
+
version: 0.1.4
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Marco Scholl
|
|
@@ -76,16 +76,15 @@ files:
|
|
|
76
76
|
- VERSION
|
|
77
77
|
- easy_captcha.gemspec
|
|
78
78
|
- init.rb
|
|
79
|
-
- install.rb
|
|
80
79
|
- lib/easy_captcha.rb
|
|
81
80
|
- lib/easy_captcha/captcha.rb
|
|
82
81
|
- lib/easy_captcha/controller.rb
|
|
83
82
|
- lib/easy_captcha/controller_helpers.rb
|
|
84
83
|
- lib/easy_captcha/view_helpers.rb
|
|
85
84
|
- resources/captcha.ttf
|
|
86
|
-
-
|
|
87
|
-
-
|
|
88
|
-
-
|
|
85
|
+
- spec/easy_captcha_spec.rb
|
|
86
|
+
- spec/spec.opts
|
|
87
|
+
- spec/spec_helper.rb
|
|
89
88
|
has_rdoc: true
|
|
90
89
|
homepage: http://github.com/traxanos/easy_captcha
|
|
91
90
|
licenses: []
|
|
@@ -119,5 +118,5 @@ signing_key:
|
|
|
119
118
|
specification_version: 3
|
|
120
119
|
summary: Captcha-Plugin for Rails
|
|
121
120
|
test_files:
|
|
122
|
-
-
|
|
123
|
-
-
|
|
121
|
+
- spec/easy_captcha_spec.rb
|
|
122
|
+
- spec/spec_helper.rb
|
data/install.rb
DELETED
|
File without changes
|
data/test/easy_captcha_test.rb
DELETED
data/test/test_helper.rb
DELETED
data/uninstall.rb
DELETED
|
File without changes
|