stacker_bee 2.1.0.pre183 → 2.1.0.pre184

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTBmMjY5ZmZhNWIyZWI4ODUwMzU0ZjE3ZDVlYjRlYzE2ZWY4ODY1MQ==
4
+ MTdiMDdkZTNmMzdmMjc4MTU0ZmNkYTg5ODg0NmU0NDBiNjA4ZDc1OQ==
5
5
  data.tar.gz: !binary |-
6
- YmEzODQ2OGZiZGQzMjRkOGFiYmIzNmI4YmJlNmY0NzNmMmEyNTljNA==
6
+ M2NiZDc0NDhmZGFjZDkxOGRhOTRmZmIwNmVhMDk3MzEyNzMxNTExNg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OTRlYjQzN2VhYjEwN2I5MGMwODA5MzViOWUxMmE5YWMyMTRlZGQwNjFmODcy
10
- MDkwZGEwNmY0ZGU2ZDAyNmQ2MzNlODUwYTkxMzlhMzUyNzRmNjI5MWM0NTEy
11
- YWE3ZmVlNTdjNmY2ZTBiNTExY2JjZjIwNjEzNDVhZmYyMzg5NjA=
9
+ MThiNzJhMDdhNjgzZjUxZGU3MDAxYTk3MTZiODdhMGQ4ODkxZTJhOTBiZjkx
10
+ Zjc2NTcwMDBmOWFlMDIxMmQ1YzI0N2EwYzcyMzMxYjg1MmU4NzBjMzhmMTMw
11
+ ZjEzM2IyNGI5ODcwZGZmYjczZDYxNzYwOTgyMDRlOWE2ZWFmNTM=
12
12
  data.tar.gz: !binary |-
13
- ZjhkMjIyNWU0NGQwN2JmZmVjM2ExZTBlMDEwZmI0ZjNmMTUyNzQ2MDY3MWIw
14
- OTc5N2M1ZTJmZWNiYTg4YWJiNWYwODVmOGVkNTBiYmU0ZGE4NTgyM2U4NTdl
15
- NDAzNjY5YjgxMzViMjZkNTVkYzQ4ODA3NzJlMmE0YmM1NTY2Mjc=
13
+ ZjZlMjE5MmI4MjYyYTFiNjZkMTViZTBiNWQ0ZGQ0ZThkMGEzMjU0OTk5MDBm
14
+ YWFhZDM1OTVhYjk5MGY2MDk4YmYxYTdjY2VhYjVhZjJmYTg2N2MzMzI3M2Y3
15
+ NTlmODkwY2E2YWUyYTY3NTA1ZTRjYjc2YjYxYzI0NWU0ZjFlNzA=
@@ -31,7 +31,7 @@ describe "A response to a request sent to the CloudStack API", :vcr do
31
31
 
32
32
  context "failing to connect" do
33
33
  let(:url) { "http://127.0.0.1:666/client/api" }
34
- it "should raise helpful exception" do
34
+ it "raises a helpful exception" do
35
35
  klass = StackerBee::ConnectionError
36
36
  expect { subject }.to raise_error klass, /#{url}/
37
37
  end
@@ -33,7 +33,7 @@ describe StackerBee::Connection do
33
33
  before do
34
34
  faraday.stub(:get) { fail Faraday::Error::ConnectionFailed, "boom" }
35
35
  end
36
- it "should raise helpful exception" do
36
+ it "raises a helpful exception" do
37
37
  klass = StackerBee::ConnectionError
38
38
  expect { get }.to raise_error klass, /#{url}/
39
39
  end
@@ -41,7 +41,7 @@ describe StackerBee::Connection do
41
41
 
42
42
  context "no protocol specified in URL" do
43
43
  let(:url) { "wrong.com" }
44
- it "should raise helpful exception" do
44
+ it "raises a helpful exception" do
45
45
  klass = StackerBee::ConnectionError
46
46
  expect { get }.to raise_error klass, /no protocol/
47
47
  end
@@ -33,11 +33,11 @@ describe StackerBee::Utilities, "#uncase" do
33
33
  map_a_hash(original) { |key, value| [key * 2, value * -1] }
34
34
  end
35
35
 
36
- it "should map over a hash" do
36
+ it "maps over a hash" do
37
37
  transformed.should eq expected
38
38
  end
39
39
 
40
- it "should not modify the original" do
40
+ it "does not modify the original" do
41
41
  original.freeze
42
42
  transformed
43
43
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stacker_bee
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0.pre183
4
+ version: 2.1.0.pre184
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Sterndale
@@ -236,7 +236,6 @@ files:
236
236
  - spec/units/stacker_bee/client_spec.rb
237
237
  - spec/units/stacker_bee/configuration_spec.rb
238
238
  - spec/units/stacker_bee/connection_spec.rb
239
- - spec/units/stacker_bee/console_spec.rb
240
239
  - spec/units/stacker_bee/http_middleware/graylog_spec.rb
241
240
  - spec/units/stacker_bee/middleware/adapter_spec.rb
242
241
  - spec/units/stacker_bee/middleware/base_spec.rb
@@ -309,7 +308,6 @@ test_files:
309
308
  - spec/units/stacker_bee/client_spec.rb
310
309
  - spec/units/stacker_bee/configuration_spec.rb
311
310
  - spec/units/stacker_bee/connection_spec.rb
312
- - spec/units/stacker_bee/console_spec.rb
313
311
  - spec/units/stacker_bee/http_middleware/graylog_spec.rb
314
312
  - spec/units/stacker_bee/middleware/adapter_spec.rb
315
313
  - spec/units/stacker_bee/middleware/base_spec.rb
File without changes