simple_google_auth 0.3.0 → 0.3.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: 8dd8d1cf6e697eb5d635b3118923e4f916ca5de03847c78143fb7ce8ece9c8c5
4
- data.tar.gz: 61cf025ca623785b3c150f79c5035eabd5b4606e5e95f47a48affd0bc090d790
3
+ metadata.gz: 8220475142931f00b726a976c242b8a1d5ff19f7f58d423697df36708be7eff4
4
+ data.tar.gz: d3a3d9717a687e19cd013c281b4215325f9843317df071601af8dcb087668cf6
5
5
  SHA512:
6
- metadata.gz: 1c4a1060d4eda6cc1bdf1acc2609e40766019254c8165d756495bb145b253f3bec4ab769a69656ac6f0af46ec93330491527da2a2611ad86bead167fa381243b
7
- data.tar.gz: 870f90edbed191d998ffb364cf474a40776c436ea4ec8c25b33c5f27881edfa3c60f6f86d2e07981c362112658b9d1548155898daa1ab3eda495dcb82e0513d5
6
+ metadata.gz: 01eb71b28da44db2653c853e06c927822458f085624e1b9aa82f039289bdc390297f1fbe379b1f0dd13c100c9fd076a37de133ecfae9177a67690cf0ad2b594b
7
+ data.tar.gz: 30bff27ae11a2b9e4e7f5781814b878233ea8db8f0965fd51bb08d2de1b6413f39f97292d018a97ae7b1aa70c351ad3512287aaa338bd2f9d39c3e8c74560b92
@@ -1,3 +1,3 @@
1
1
  module SimpleGoogleAuth
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
@@ -14,7 +14,7 @@ describe SimpleGoogleAuth::HttpClient do
14
14
  expect(http).to receive(:request).with(request).and_return(response)
15
15
 
16
16
  expect(Net::HTTP::Post).to receive(:new).with("/somepath").and_return(request)
17
- expect(request).to receive(:set_form_data).with('some' => 'data')
17
+ expect(request).to receive(:set_form_data).with({'some' => 'data'})
18
18
  end
19
19
 
20
20
  subject { SimpleGoogleAuth::HttpClient.new("https://some.host/somepath", open_timeout: 12, read_timeout: 13) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_google_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roger Nesbitt
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-04 00:00:00.000000000 Z
11
+ date: 2026-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '3.9'
33
+ version: '6.1'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '3.9'
40
+ version: '6.1'
41
41
  description: An extremely easy way to protect your site by requiring Google logins
42
42
  without having to set up a traditional authentication system
43
43
  email:
@@ -73,7 +73,7 @@ homepage: https://github.com/mogest/simple_google_auth
73
73
  licenses:
74
74
  - MIT
75
75
  metadata: {}
76
- post_install_message:
76
+ post_install_message:
77
77
  rdoc_options: []
78
78
  require_paths:
79
79
  - lib
@@ -88,18 +88,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  requirements: []
91
- rubyforge_project:
92
- rubygems_version: 2.7.6
93
- signing_key:
91
+ rubygems_version: 3.5.22
92
+ signing_key:
94
93
  specification_version: 4
95
94
  summary: Super simple Google authentication for your Rails site
96
95
  test_files:
97
- - spec/spec_helper.rb
98
- - spec/simple_google_auth/http_client_spec.rb
99
- - spec/simple_google_auth/config_spec.rb
100
96
  - spec/simple_google_auth/auth_data_presenter_spec.rb
101
- - spec/simple_google_auth/oauth_spec.rb
102
- - spec/simple_google_auth/receiver_spec.rb
103
97
  - spec/simple_google_auth/authorization_uri_builder_spec.rb
98
+ - spec/simple_google_auth/config_spec.rb
104
99
  - spec/simple_google_auth/controller_spec.rb
100
+ - spec/simple_google_auth/http_client_spec.rb
101
+ - spec/simple_google_auth/oauth_spec.rb
102
+ - spec/simple_google_auth/receiver_spec.rb
105
103
  - spec/simple_google_auth_spec.rb
104
+ - spec/spec_helper.rb