ogle 0.0.6 → 0.1.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.
- data/README.md +4 -0
- data/lib/ogle/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -30,6 +30,10 @@ Depending on the call you make, glance will sometimes return JSON and others XML
|
|
30
30
|
response = CONNECTION.image true
|
31
31
|
puts response
|
32
32
|
|
33
|
+
# This will return a list of only images that are runable (are not aki or ari)
|
34
|
+
response = CONNECTION.image.runable
|
35
|
+
puts response
|
36
|
+
|
33
37
|
# This will return headers for a specific image as a hash
|
34
38
|
response = CONNECTION.image.find 6
|
35
39
|
puts response
|
data/lib/ogle/version.rb
CHANGED