ogle 0.0.6 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- 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