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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 557cffa6305ceb683fbba3ea3564c57fa8cf11d0669efe32b424c1ea87cc8958
4
- data.tar.gz: 3b71e313292efb16cae4ed263fd17618b0873e0e52f7c07a75a5ffb941506b3c
3
+ metadata.gz: b137ee1cc83a6653b49903d092c9e50ea829c8a7cd0521def7b72ca2cc80cad9
4
+ data.tar.gz: f76556d215cf8a35b25f280831672fa50fe348e3a1910f78a0e1d95ff36238b9
5
5
  SHA512:
6
- metadata.gz: 8ef94bd31647bcf663272796d8eba7567c8482c420532329c7bd3f2a8ace1b765638676dd70d6fa81162359fe660dfe26d3050b8f54b3cf4b35e76e224b5bdf5
7
- data.tar.gz: aa72a39e77567372213df2173ba802cacf1bcb3fc91517ed660c251a96faf0d33baeeaaf84e653e63d91e84abca5b616ce58aeec086bb799fe67a8439bdf26b5
6
+ metadata.gz: 201e14b5924a62836dc8479496d26567482219fea58a492c665b5a2585cf026bbd20ee2641cdc55ee822b07a7668f73804b559d5d4dde9b021a0cb39d550c040
7
+ data.tar.gz: b3057993c034c2ca588b684a730b9b7337366b857deed6fe848478a84a6f9f8df1769a2995d619bf880625d85184cda6aef4723608f61163a80f4f9e634fd7bc
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- google_sign_in (1.0.0)
4
+ google_sign_in (1.0.1)
5
5
  google-id-token (>= 1.4.0)
6
6
  oauth2 (>= 1.4.0)
7
7
  rails (>= 5.2.0)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'google_sign_in'
3
- s.version = '1.0.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 :action_controller do
18
- ActionController::Base.helper GoogleSignIn::Engine.helpers
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.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-05 00:00:00.000000000 Z
12
+ date: 2018-09-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails