cloudally 0.1.3 → 0.2.0
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.md +3 -0
- data/lib/cloudally/request.rb +5 -0
- data/lib/cloudally/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5780ac88974b8f9bd7fe6d49e500340da172ad2565be04fc469462bcf9a13d53
|
4
|
+
data.tar.gz: dc651c10d423ca8e3da8b3fc0db36678cd90a789598ed2bd402534da62d6d6c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bee671a9cef8053845f521d84c1bc0f135b6d19c2936088343e0c7c6c7927a7be439be30d317ec571104788425c6bc2114a80f98fdea21b075bfd6df88e4883
|
7
|
+
data.tar.gz: 5337ea5ef199d840a1febdf9eb7ce401984d90c25ecab0e67c7a9f69dd8b3d8c62b5afb59c1fdbe2b0d430e394b7ce60af050447e07ad3e76091bc4cfd0367c1
|
data/CHANGELOG.md
CHANGED
data/lib/cloudally/request.rb
CHANGED
@@ -8,6 +8,7 @@ module CloudAlly
|
|
8
8
|
attr_reader :attributes
|
9
9
|
|
10
10
|
def initialize attributes
|
11
|
+
@_raw = attributes
|
11
12
|
@attributes = attributes.clone.transform_keys(&:to_s)
|
12
13
|
end
|
13
14
|
|
@@ -45,6 +46,10 @@ module CloudAlly
|
|
45
46
|
super
|
46
47
|
end
|
47
48
|
end
|
49
|
+
|
50
|
+
def to_json options={}
|
51
|
+
@_raw.to_json
|
52
|
+
end
|
48
53
|
end
|
49
54
|
|
50
55
|
# Perform an HTTP GET request and return entity
|
data/lib/cloudally/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudally
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Janco Tanis
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|