bwapi 11.0.1.pre.624 → 12.0.0.pre.630
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 +8 -8
- data/lib/bwapi/version.rb +1 -1
- data/spec/bwapi/configuration_spec.rb +3 -3
- data/spec/bwapi/default_spec.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MDhjZDc5ZDkxOWQ4ODRmMzg3MzM3YTRiNTc2ZDYwNGQyZjdmYzk3ZA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MGZhNDY4MGJmNjRkYzkxYjdkYjQ3NDMyZTg0YTYzODVlNjU0Njc1Zg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OWE2MGIwMjQ3NzA3MjE5YzI2YTYzM2IxMzdlYWRiMzhkNmE3OTc3MmY1YmM4
|
|
10
|
+
YjZjZjM2YWU3MzRiMzM5N2ZmNTA1ZGUwZWI3OWI5YzU4NTg2ZTdiN2U4MWUw
|
|
11
|
+
YTE5OWI1MzJhZjVhMjRlNzhjMjdjMmQ5MmMyNzQ5MzAwNjA4NDM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NTU5NGM2YTdjNzVmNDA1ZDA1YWMyNTYxODkxZjkyMTRjNjUwZDdlODhiMjMw
|
|
14
|
+
YmQ5NmYzZTNlYTJkNmExZGJlNjEwZGIzZWRhNjc3YjU2ZjUxNzMwYzZmMGJm
|
|
15
|
+
YWViNTE4ZDAxNjhhOGJiNWQwMGNiMmI5YzY5NzE0MGEwYWRmMmI=
|
data/lib/bwapi/version.rb
CHANGED
|
@@ -385,7 +385,7 @@ describe BWAPI::Configuration do
|
|
|
385
385
|
end
|
|
386
386
|
|
|
387
387
|
it 'should reset the user_agent value' do
|
|
388
|
-
expect(bwapi.user_agent).to eql('BWAPI Ruby Gem
|
|
388
|
+
expect(bwapi.user_agent).to eql('BWAPI Ruby Gem 12.0.0')
|
|
389
389
|
end
|
|
390
390
|
|
|
391
391
|
it 'should reset the username value' do
|
|
@@ -478,7 +478,7 @@ describe BWAPI::Configuration do
|
|
|
478
478
|
client_secret: nil,
|
|
479
479
|
connection_options: {
|
|
480
480
|
headers: {
|
|
481
|
-
user_agent: 'BWAPI Ruby Gem
|
|
481
|
+
user_agent: 'BWAPI Ruby Gem 12.0.0'
|
|
482
482
|
},
|
|
483
483
|
request: {
|
|
484
484
|
params_encoder: Faraday::FlatParamsEncoder
|
|
@@ -490,7 +490,7 @@ describe BWAPI::Configuration do
|
|
|
490
490
|
password: nil,
|
|
491
491
|
performance: {},
|
|
492
492
|
refresh_token: nil,
|
|
493
|
-
user_agent: 'BWAPI Ruby Gem
|
|
493
|
+
user_agent: 'BWAPI Ruby Gem 12.0.0',
|
|
494
494
|
username: nil,
|
|
495
495
|
verify_ssl: false
|
|
496
496
|
)
|
data/spec/bwapi/default_spec.rb
CHANGED
|
@@ -34,7 +34,7 @@ describe BWAPI::Default do
|
|
|
34
34
|
client_secret: nil,
|
|
35
35
|
connection_options: {
|
|
36
36
|
headers: {
|
|
37
|
-
user_agent: 'BWAPI Ruby Gem
|
|
37
|
+
user_agent: 'BWAPI Ruby Gem 12.0.0'
|
|
38
38
|
},
|
|
39
39
|
request: {
|
|
40
40
|
params_encoder: Faraday::FlatParamsEncoder
|
|
@@ -46,7 +46,7 @@ describe BWAPI::Default do
|
|
|
46
46
|
password: nil,
|
|
47
47
|
performance: {},
|
|
48
48
|
refresh_token: nil,
|
|
49
|
-
user_agent: 'BWAPI Ruby Gem
|
|
49
|
+
user_agent: 'BWAPI Ruby Gem 12.0.0',
|
|
50
50
|
username: nil,
|
|
51
51
|
verify_ssl: false
|
|
52
52
|
)
|
|
@@ -128,7 +128,7 @@ describe BWAPI::Default do
|
|
|
128
128
|
it 'should return the default hash values' do
|
|
129
129
|
expect(BWAPI::Default.connection_options).to eql(
|
|
130
130
|
headers: {
|
|
131
|
-
user_agent: 'BWAPI Ruby Gem
|
|
131
|
+
user_agent: 'BWAPI Ruby Gem 12.0.0'
|
|
132
132
|
},
|
|
133
133
|
request: {
|
|
134
134
|
params_encoder: Faraday::FlatParamsEncoder
|