google_sign_in 1.0.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/google_sign_in.gemspec +1 -1
- data/lib/google_sign_in/engine.rb +6 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b137ee1cc83a6653b49903d092c9e50ea829c8a7cd0521def7b72ca2cc80cad9
|
|
4
|
+
data.tar.gz: f76556d215cf8a35b25f280831672fa50fe348e3a1910f78a0e1d95ff36238b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 201e14b5924a62836dc8479496d26567482219fea58a492c665b5a2585cf026bbd20ee2641cdc55ee822b07a7668f73804b559d5d4dde9b021a0cb39d550c040
|
|
7
|
+
data.tar.gz: b3057993c034c2ca588b684a730b9b7337366b857deed6fe848478a84a6f9f8df1769a2995d619bf880625d85184cda6aef4723608f61163a80f4f9e634fd7bc
|
data/Gemfile.lock
CHANGED
data/google_sign_in.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'google_sign_in'
|
|
3
|
-
s.version = '1.0.
|
|
3
|
+
s.version = '1.0.1'
|
|
4
4
|
s.authors = ['David Heinemeier Hansson', 'George Claghorn']
|
|
5
5
|
s.email = ['david@basecamp.com', 'george@basecamp.com']
|
|
6
6
|
s.summary = 'Sign in (or up) with Google for Rails applications'
|
|
@@ -14,8 +14,8 @@ module GoogleSignIn
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
initializer 'google_sign_in.helpers' do
|
|
17
|
-
ActiveSupport.on_load :
|
|
18
|
-
|
|
17
|
+
ActiveSupport.on_load :action_controller_base do
|
|
18
|
+
helper GoogleSignIn::Engine.helpers
|
|
19
19
|
end
|
|
20
20
|
end
|
|
21
21
|
|
|
@@ -24,5 +24,9 @@ module GoogleSignIn
|
|
|
24
24
|
mount GoogleSignIn::Engine, at: app.config.google_sign_in.root || 'google_sign_in'
|
|
25
25
|
end
|
|
26
26
|
end
|
|
27
|
+
|
|
28
|
+
initializer 'google_sign_in.parameter_filters' do |app|
|
|
29
|
+
app.config.filter_parameters << :code
|
|
30
|
+
end
|
|
27
31
|
end
|
|
28
32
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_sign_in
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-09-
|
|
12
|
+
date: 2018-09-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|