cloudsync 2.0.2 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/cloudsync.gemspec +1 -1
- data/lib/cloudsync/backend/cloudfiles.rb +1 -0
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0
|
1
|
+
2.1.0
|
data/cloudsync.gemspec
CHANGED
@@ -48,6 +48,7 @@ module Cloudsync
|
|
48
48
|
containers_to_sync(upload_prefix).inject([]) do |files, container|
|
49
49
|
container = get_or_create_container(container)
|
50
50
|
objects_from_container(container, upload_prefix).each do |path, hash|
|
51
|
+
next if hash[:content_type] == "application/directory"
|
51
52
|
files << Cloudsync::File.from_cf_info(container, path, hash, self.to_s)
|
52
53
|
end
|
53
54
|
files
|