photo_folder 1.0.7 → 1.0.8
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/lib/models/photo_collection.rb +3 -0
- data/lib/photo_folder.rb +3 -0
- data/photo_folder.gemspec +1 -1
- metadata +3 -3
@@ -58,6 +58,9 @@ class PhotoCollection < ActiveRecord::Base
|
|
58
58
|
PhotoFolder::all_paths_in_database.select{|path| self.path.underscore.gsub(/\s/,'_') == path.gsub(/\/[^\/]+$/,'').underscore.gsub(/\s/,'_')}.each do |path|
|
59
59
|
Photo.update_all("photo_collection_id = #{self.id}","path = '#{path}'")
|
60
60
|
end
|
61
|
+
photos.each_with_index do |photo,i|
|
62
|
+
photo.insert_at(i + 1)
|
63
|
+
end
|
61
64
|
end
|
62
65
|
|
63
66
|
def set_parent_id
|
data/lib/photo_folder.rb
CHANGED
@@ -178,6 +178,9 @@ module PhotoFolder
|
|
178
178
|
to_remove.push(path_in_database) if !collection_paths_in_filesystem.include?(path_in_database)
|
179
179
|
end
|
180
180
|
|
181
|
+
#ensure root photo is not marked as a collection
|
182
|
+
to_add.reject!{|item| item == 'index.markdown'}
|
183
|
+
|
181
184
|
[to_add,to_remove]
|
182
185
|
end
|
183
186
|
|
data/photo_folder.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: photo_folder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 8
|
10
|
+
version: 1.0.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ryan Johnson
|