bucket_list 0.3.0 → 0.3.1
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/config/config.yml +1 -1
- data/lib/bucket_list/app.rb +1 -2
- metadata +1 -1
data/config/config.yml
CHANGED
data/lib/bucket_list/app.rb
CHANGED
@@ -115,7 +115,6 @@ class BucketList
|
|
115
115
|
if File.directory?(file)
|
116
116
|
Dir["#{file}/*"].each do |file|
|
117
117
|
if !File.directory?(file) # No support for sub dirs (yet)
|
118
|
-
puts file
|
119
118
|
upload_file(bucket, file)
|
120
119
|
end
|
121
120
|
end
|
@@ -129,7 +128,7 @@ class BucketList
|
|
129
128
|
o = bucket.objects[basename]
|
130
129
|
|
131
130
|
make_request {
|
132
|
-
o.write(:file => file
|
131
|
+
o.write(:file => file) # :content_type => 'some/thing'
|
133
132
|
|
134
133
|
until bucket_contains_object?(bucket.name, basename) do
|
135
134
|
sleep 1
|