fog 0.0.33 → 0.0.34

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.33
1
+ 0.0.34
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{fog}
8
- s.version = "0.0.33"
8
+ s.version = "0.0.34"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["geemus (Wesley Beary)"]
@@ -12,7 +12,6 @@ module Fog
12
12
 
13
13
  def all
14
14
  data = connection.get_service.body
15
- owner = Fog::AWS::S3::Owner.new(data.delete('Owner'))
16
15
  buckets = Fog::AWS::S3::Buckets.new(:connection => connection)
17
16
  data['Buckets'].each do |bucket|
18
17
  buckets << Fog::AWS::S3::Bucket.new({
@@ -45,7 +44,6 @@ module Fog
45
44
  end
46
45
  bucket.objects.merge_attributes(options)
47
46
  data['Contents'].each do |object|
48
- owner = Fog::AWS::S3::Owner.new(object.delete('Owner'))
49
47
  bucket.objects << Fog::AWS::S3::Object.new({
50
48
  :bucket => bucket,
51
49
  :connection => connection,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.33
4
+ version: 0.0.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - geemus (Wesley Beary)