raca 0.3.0 → 0.3.1
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/CHANGELOG +3 -0
- data/README.markdown +3 -2
- data/lib/raca/http_client.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 09f97899c1e739f1f0e14a11a4a6ef9d42dd516f
|
|
4
|
+
data.tar.gz: a2955d1c12e809dc132be52d9564f9e23cdf677d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d743838723bf414aae9716e8eb87173a814cb0c70fd2dfd3ef60a61c732de574e2111733b1aba69e30f27310d9f02a98bb62b1651824f53903e3c8c32cf4735b
|
|
7
|
+
data.tar.gz: d16ab2778fe4ae974808015c56be1cc9a4d6463d494c7e591ca949d74b7fa36fb5fea20bb640b0ae400c1df5b66d43fc2b6a7b806dcd9c20cf9833cdd420f51c
|
data/CHANGELOG
CHANGED
data/README.markdown
CHANGED
|
@@ -153,8 +153,9 @@ library and supports much more of the API than this modest gem.
|
|
|
153
153
|
|
|
154
154
|
As of version 1.20.0, fog supports dozens of providers, contains ~152000 lines
|
|
155
155
|
of ruby and adds ~500ms to the boot time of our rails apps. raca is a
|
|
156
|
-
lightweight alternative with minimal dependencies that should
|
|
157
|
-
impact on application boot times.
|
|
156
|
+
lightweight, rackspace-only alternative with minimal dependencies that should
|
|
157
|
+
have a negligable impact on application boot times. Version 0.3 has ~700 lines of
|
|
158
|
+
ruby (excluding specs).
|
|
158
159
|
|
|
159
160
|
## Compatibility
|
|
160
161
|
|
data/lib/raca/http_client.rb
CHANGED
|
@@ -109,7 +109,7 @@ module Raca
|
|
|
109
109
|
else
|
|
110
110
|
HTTPError
|
|
111
111
|
end
|
|
112
|
-
raise error_klass, "Rackspace returned HTTP status #{response.code}"
|
|
112
|
+
raise error_klass, "Rackspace returned HTTP status #{response.code} (rackspace transaction id: #{response["X-TRANS-ID"]})"
|
|
113
113
|
end
|
|
114
114
|
|
|
115
115
|
def log(msg)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raca
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Healy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-04-
|
|
11
|
+
date: 2014-04-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|