ogle 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.
Files changed (3) hide show
  1. data/README.md +3 -7
  2. data/lib/ogle/version.rb +1 -1
  3. metadata +1 -1
data/README.md CHANGED
@@ -25,18 +25,14 @@ Depending on the call you make, glance will sometimes return JSON and others XML
25
25
  # This will give a list of all the images
26
26
  response = CONNECTION.resource.all
27
27
  puts response
28
- puts response.body
29
- puts response.code
30
28
 
31
29
  # This will give a detailed list of all the images
32
30
  response = CONNECTION.resource true
33
31
  puts response
34
- puts response.body
35
- puts response.code
36
32
 
37
- # This will return the x-image-meta-* headers for a specific image as a hash
38
- response = CONNECTION.resource 6
39
- puts response.inspect
33
+ # This will return headers for a specific image as a hash
34
+ response = CONNECTION.resource.find 6
35
+ puts response
40
36
 
41
37
  ## Compatability
42
38
 
data/lib/ogle/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ogle
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ogle
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
  - Kevin Bringard