omniauth-chef-oauth2 1.0.2 → 1.0.3
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/.gitignore +1 -0
- data/CHANGELOG.md +14 -0
- data/lib/omniauth-chef-oauth2/version.rb +1 -1
- data/lib/omniauth/strategies/chef_oauth2.rb +1 -1
- data/spec/omniauth/strategies/chef_oauth2_spec.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6caba0f7530aad2802830fef706e5e8d40b2ce74
|
|
4
|
+
data.tar.gz: e885eea13a777d6ef823a50ea63718ff354a72fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d5bdd031cd53180296f8e6dedba3fd82e0f38c7e405c957f4dfd93b180fb33644deaa310412f83d353caa0dbac6cf62033bf3106d3a925a4856f87c2a674b64
|
|
7
|
+
data.tar.gz: afb1d9fd29da197da52e1085556950fa140c3cbe5d5a1e4c2b9589f415a1f672801442b5b44e00ee25739e858b340ab353c66a213beb8662adccd735dd699de3
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -5,7 +5,7 @@ describe OmniAuth::Strategies::ChefOAuth2 do
|
|
|
5
5
|
|
|
6
6
|
subject do
|
|
7
7
|
OmniAuth::Strategies::ChefOAuth2.new(nil, @options || {}).tap do |strategy|
|
|
8
|
-
strategy.
|
|
8
|
+
allow(strategy).to receive(:request) { @request }
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
|
|
@@ -14,7 +14,7 @@ describe OmniAuth::Strategies::ChefOAuth2 do
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
it 'should have the correct default site' do
|
|
17
|
-
expect(subject.options.client_options.site).to eq("https://id.
|
|
17
|
+
expect(subject.options.client_options.site).to eq("https://id.chef.io")
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
it 'should have the correct default authorize url' do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-chef-oauth2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Nunciato
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -116,6 +116,7 @@ extensions: []
|
|
|
116
116
|
extra_rdoc_files: []
|
|
117
117
|
files:
|
|
118
118
|
- ".gitignore"
|
|
119
|
+
- CHANGELOG.md
|
|
119
120
|
- CONTRIBUTING.md
|
|
120
121
|
- Gemfile
|
|
121
122
|
- LICENSE
|