cf-uaa-lib 3.9.0 → 3.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -3
- data/{LICENSE.TXT → LICENSE} +0 -0
- data/NOTICE +12 -0
- data/cf-uaa-lib.gemspec +1 -1
- data/lib/uaa/http.rb +2 -0
- data/lib/uaa/version.rb +1 -1
- data/spec/http_spec.rb +5 -3
- metadata +15 -14
- data/NOTICE.TXT +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 339b000b5ecc7622591dc843922a7d2b3aa03f86
|
4
|
+
data.tar.gz: dd889d4ae8c9068e519957e6fef24cd3bd627e08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b214f9d0e6fee14b91350d280eda4e54af0075a67fe8f8bfb344b97540efd4b580c68c4fe36e3813a737d09a02247fee2e2a95f32c96f67772f182d20bc5832a
|
7
|
+
data.tar.gz: '06719f1ede8310dc79b0fa3f33f89e21383af9c1c016a373ea37b8e61b122966d2a5f74bafca04dc4b942cc8c55b2c0ca4583fe2bd3abbdca1778ebfeb7bfb97'
|
data/.travis.yml
CHANGED
data/{LICENSE.TXT → LICENSE}
RENAMED
File without changes
|
data/NOTICE
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
|
2
|
+
Copyright (c) 2015-Present CloudFoundry.org Foundation, Inc. All Rights Reserved.
|
3
|
+
|
4
|
+
This project contains software that is Copyright (c) 2012-2015 Pivotal Software, Inc.
|
5
|
+
|
6
|
+
This project is licensed to you under the Apache License, Version 2.0 (the "License").
|
7
|
+
|
8
|
+
You may not use this project except in compliance with the License.
|
9
|
+
|
10
|
+
This project may include a number of subcomponents with separate copyright notices
|
11
|
+
and license terms. Your use of these subcomponents is subject to the terms and
|
12
|
+
conditions of the subcomponent's license, as noted in the LICENSE file.
|
data/cf-uaa-lib.gemspec
CHANGED
@@ -36,7 +36,7 @@ Gem::Specification.new do |s|
|
|
36
36
|
s.add_dependency 'multi_json', '~> 1.12.0', '>= 1.12.1'
|
37
37
|
s.add_dependency 'httpclient', '~> 2.8', '>= 2.8.2.4'
|
38
38
|
|
39
|
-
s.add_development_dependency 'bundler', '~> 1.14
|
39
|
+
s.add_development_dependency 'bundler', '~> 1.14'
|
40
40
|
s.add_development_dependency 'rake', '~> 10.3', '>= 10.3.2'
|
41
41
|
s.add_development_dependency 'rspec', '~> 2.14', '>= 2.14.1'
|
42
42
|
s.add_development_dependency 'simplecov', '~> 0.8.2'
|
data/lib/uaa/http.rb
CHANGED
data/lib/uaa/version.rb
CHANGED
data/spec/http_spec.rb
CHANGED
@@ -78,14 +78,16 @@ describe CF::UAA::Http do
|
|
78
78
|
end
|
79
79
|
|
80
80
|
context 'when validating ssl' do
|
81
|
-
|
82
|
-
|
81
|
+
let(:ssl_config) { double('ssl_config') }
|
82
|
+
|
83
|
+
it 'sets default values' do
|
84
|
+
expect(http_double).to receive(:ssl_config).and_return(ssl_config)
|
85
|
+
expect(ssl_config).to receive(:set_default_paths)
|
83
86
|
http_instance.http_get('https://example.com')
|
84
87
|
end
|
85
88
|
end
|
86
89
|
|
87
90
|
context 'when ssl certificate is provided' do
|
88
|
-
|
89
91
|
let(:ssl_config) { double('ssl_config') }
|
90
92
|
|
91
93
|
it 'passes it' do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cf-uaa-lib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dave Syer
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2017-
|
15
|
+
date: 2017-07-10 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: multi_json
|
@@ -60,20 +60,14 @@ dependencies:
|
|
60
60
|
requirements:
|
61
61
|
- - "~>"
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 1.14
|
64
|
-
- - ">="
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
version: 1.14.3
|
63
|
+
version: '1.14'
|
67
64
|
type: :development
|
68
65
|
prerelease: false
|
69
66
|
version_requirements: !ruby/object:Gem::Requirement
|
70
67
|
requirements:
|
71
68
|
- - "~>"
|
72
69
|
- !ruby/object:Gem::Version
|
73
|
-
version: 1.14
|
74
|
-
- - ">="
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: 1.14.3
|
70
|
+
version: '1.14'
|
77
71
|
- !ruby/object:Gem::Dependency
|
78
72
|
name: rake
|
79
73
|
requirement: !ruby/object:Gem::Requirement
|
@@ -202,8 +196,8 @@ files:
|
|
202
196
|
- ".yardopts"
|
203
197
|
- CHANGELOG.md
|
204
198
|
- Gemfile
|
205
|
-
- LICENSE
|
206
|
-
- NOTICE
|
199
|
+
- LICENSE
|
200
|
+
- NOTICE
|
207
201
|
- README.md
|
208
202
|
- Rakefile
|
209
203
|
- cf-uaa-lib.gemspec
|
@@ -242,8 +236,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
242
236
|
version: '0'
|
243
237
|
requirements: []
|
244
238
|
rubyforge_project: cf-uaa-lib
|
245
|
-
rubygems_version: 2.
|
239
|
+
rubygems_version: 2.6.11
|
246
240
|
signing_key:
|
247
241
|
specification_version: 4
|
248
242
|
summary: Client library for CloudFoundry UAA
|
249
|
-
test_files:
|
243
|
+
test_files:
|
244
|
+
- spec/http_spec.rb
|
245
|
+
- spec/info_spec.rb
|
246
|
+
- spec/integration_spec.rb
|
247
|
+
- spec/scim_spec.rb
|
248
|
+
- spec/spec_helper.rb
|
249
|
+
- spec/token_coder_spec.rb
|
250
|
+
- spec/token_issuer_spec.rb
|
data/NOTICE.TXT
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
Cloud Foundry
|
2
|
-
Copyright (c) [2009-2014] Pivotal Software, Inc. All Rights Reserved.
|
3
|
-
|
4
|
-
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
5
|
-
You may not use this product except in compliance with the License.
|
6
|
-
|
7
|
-
This product includes a number of subcomponents with
|
8
|
-
separate copyright notices and license terms. Your use of these
|
9
|
-
subcomponents is subject to the terms and conditions of the
|
10
|
-
subcomponent's license, as noted in the LICENSE file.
|