rucaptcha 2.0.1 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/rucaptcha.rb +14 -9
- data/lib/rucaptcha/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff5dc2eab0dce97fc48b2785dd334c40a4e56478
|
4
|
+
data.tar.gz: 6260f7dfde2dd1c4ab3ec7724d8e1e3d207f0ac8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90b1cf57de8baa5a48411565437bc71eec34753a4a5fdf88b9b58f054d00a75b1d3df84aa2cd0544c7287f0ff5d59bf897a9c355fe9ca55e04355d07ac8cd30b
|
7
|
+
data.tar.gz: f6ffd1634b07751ebbf19207ef45864c3bf4ff99c2333e1c7a5510fa3db844a3dbbad5808a5ec119322dfffc52781feb08d49fcaabb623a8b335cdf2b3bc14c0
|
data/CHANGELOG.md
CHANGED
data/lib/rucaptcha.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
require 'rails'
|
2
2
|
require 'action_controller'
|
3
3
|
require 'active_support/all'
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
4
|
+
require 'rucaptcha/rucaptcha'
|
5
|
+
require 'rucaptcha/version'
|
6
|
+
require 'rucaptcha/configuration'
|
7
|
+
require 'rucaptcha/controller_helpers'
|
8
|
+
require 'rucaptcha/view_helpers'
|
9
|
+
require 'rucaptcha/cache'
|
10
|
+
require 'rucaptcha/engine'
|
11
11
|
|
12
12
|
module RuCaptcha
|
13
13
|
class << self
|
@@ -35,5 +35,10 @@ module RuCaptcha
|
|
35
35
|
end
|
36
36
|
end
|
37
37
|
|
38
|
-
|
39
|
-
|
38
|
+
ActiveSupport.on_load(:action_controller) do
|
39
|
+
ActionController::Base.send :include, RuCaptcha::ControllerHelpers
|
40
|
+
end
|
41
|
+
|
42
|
+
ActiveSupport.on_load(:action_view) do
|
43
|
+
include RuCaptcha::ViewHelpers
|
44
|
+
end
|
data/lib/rucaptcha/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rucaptcha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Lee
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|