cloudassault 0.0.2 → 0.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.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ v0.0.3
2
+ - use encode64 instead of strict_encode64 in client.rb so that things work in JRuby
3
+
1
4
  v0.0.2
2
5
  - added 'simple_load_test' API to get a simple load test (running or completed)
3
6
  - fixed an issue where jobs() did not symbolize hash keys in response.
@@ -91,7 +91,7 @@ private
91
91
  end
92
92
 
93
93
  def build_headers
94
- b64 = Base64.strict_encode64("#{CloudAssault.API_KEY}:")
94
+ b64 = Base64.encode64("#{CloudAssault.API_KEY}:")
95
95
  @default_headers.merge({'Authorization' => "Basic #{b64}"})
96
96
  end
97
97
  end
@@ -1,5 +1,5 @@
1
1
  module CloudAssault
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
 
4
4
  def self.version_string
5
5
  "CloudAssault version #{CloudAssault::VERSION}"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: cloudassault
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.2
5
+ version: 0.0.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Adam Schepis