google-authenticator-rails 3.2.1 → 3.3.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4307a9fa1dc858c86c94c0e9ad17932a9ad9108f66212ac3178258cc20f9c1f8
|
4
|
+
data.tar.gz: cae72153a71eee6cc05b0b43e350f124b5389b455168104f836ad1d9995bf86f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a89869c2b3d6613bf3ee86b0b94adb71a9e16494bbc5158da151f7401a10ab7b1406df765abe7040265397018ed31150211ea7de4c42a77b082f9964d7d0f943
|
7
|
+
data.tar.gz: 1695a25b76f98c1806985c77fa092da8e9d42c0d7552f38446f30fd21ffcc618bc3c63ac54cef513349b31d1d050d62934422788e485d6710e70594acf24ffd7
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
google-authenticator-rails (3.
|
4
|
+
google-authenticator-rails (3.3.1)
|
5
5
|
actionpack
|
6
6
|
activerecord
|
7
7
|
rails
|
@@ -82,7 +82,7 @@ GEM
|
|
82
82
|
thor (>= 0.14.0)
|
83
83
|
builder (3.2.4)
|
84
84
|
chunky_png (1.4.0)
|
85
|
-
concurrent-ruby (1.2.
|
85
|
+
concurrent-ruby (1.2.2)
|
86
86
|
crass (1.0.6)
|
87
87
|
date (3.3.3)
|
88
88
|
diff-lcs (1.5.0)
|
@@ -103,7 +103,7 @@ GEM
|
|
103
103
|
marcel (1.0.2)
|
104
104
|
method_source (1.0.0)
|
105
105
|
mini_mime (1.1.2)
|
106
|
-
minitest (5.
|
106
|
+
minitest (5.18.0)
|
107
107
|
net-imap (0.3.4)
|
108
108
|
date
|
109
109
|
net-protocol
|
@@ -117,7 +117,7 @@ GEM
|
|
117
117
|
nokogiri (1.14.2-arm64-darwin)
|
118
118
|
racc (~> 1.4)
|
119
119
|
racc (1.6.2)
|
120
|
-
rack (2.2.6.
|
120
|
+
rack (2.2.6.4)
|
121
121
|
rack-test (2.0.2)
|
122
122
|
rack (>= 1.3)
|
123
123
|
rails (7.0.4.2)
|
@@ -165,13 +165,13 @@ GEM
|
|
165
165
|
diff-lcs (>= 1.2.0, < 2.0)
|
166
166
|
rspec-support (~> 3.4.0)
|
167
167
|
rspec-support (3.4.1)
|
168
|
-
simplecov (0.
|
168
|
+
simplecov (0.22.0)
|
169
169
|
docile (~> 1.1)
|
170
170
|
simplecov-html (~> 0.11)
|
171
171
|
simplecov_json_formatter (~> 0.1)
|
172
172
|
simplecov-html (0.12.3)
|
173
173
|
simplecov_json_formatter (0.1.4)
|
174
|
-
sqlite3 (1.4.
|
174
|
+
sqlite3 (1.4.4)
|
175
175
|
thor (1.2.1)
|
176
176
|
timeout (0.3.2)
|
177
177
|
tzinfo (2.0.6)
|
@@ -182,7 +182,8 @@ GEM
|
|
182
182
|
zeitwerk (2.6.7)
|
183
183
|
|
184
184
|
PLATFORMS
|
185
|
-
|
185
|
+
arm64-darwin-21
|
186
|
+
x86_64-linux
|
186
187
|
|
187
188
|
DEPENDENCIES
|
188
189
|
appraisal (~> 2.4.1)
|
@@ -37,5 +37,11 @@ module GoogleAuthenticatorRails
|
|
37
37
|
end
|
38
38
|
|
39
39
|
ActiveSupport.on_load(:action_controller) do
|
40
|
-
ActionController::Base
|
40
|
+
if defined?(ActionController::Base)
|
41
|
+
ActionController::Base.send(:include, GoogleAuthenticatorRails::ActionController::Integration)
|
42
|
+
end
|
43
|
+
|
44
|
+
if defined?(ActionController::API)
|
45
|
+
ActionController::API.send(:include, GoogleAuthenticatorRails::ActionController::Integration)
|
46
|
+
end
|
41
47
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-authenticator-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jared McFarland
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rotp
|