tb_photos 1.0.6 → 1.1.0.beta1
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.
- checksums.yaml +4 -4
- data/app/assets/images/admin/photos/photo_albums_thumb.png +0 -0
- data/app/assets/javascripts/admin/photos/photos.js +389 -382
- data/app/assets/stylesheets/admin/photos/application.css.scss +49 -51
- data/app/controllers/admin/photo_albums_controller.rb +3 -3
- data/app/controllers/admin/photo_galleries_controller.rb +4 -3
- data/app/controllers/admin/photos_controller.rb +12 -1
- data/app/controllers/photo_albums_controller.rb +4 -4
- data/app/controllers/photo_galleries_controller.rb +1 -1
- data/app/models/spud_photo_album.rb +2 -0
- data/app/models/spud_photo_gallery.rb +2 -0
- data/app/views/admin/photo_albums/_album.html.erb +5 -5
- data/app/views/admin/photo_albums/_form.html.erb +32 -23
- data/app/views/admin/photo_albums/destroy.js.erb +1 -1
- data/app/views/admin/photo_albums/index.html.erb +1 -1
- data/app/views/admin/photo_galleries/_album.html.erb +9 -0
- data/app/views/admin/photo_galleries/_form.html.erb +21 -21
- data/app/views/admin/photo_galleries/index.html.erb +6 -6
- data/app/views/admin/photos/_form.html.erb +11 -28
- data/app/views/admin/photos/_photo.html.erb +6 -6
- data/app/views/admin/photos/index.html.erb +1 -1
- data/app/views/layouts/admin/spud_photos.html.erb +1 -1
- data/app/views/photo_albums/index.html.erb +2 -2
- data/app/views/photo_albums/show.html.erb +2 -2
- data/app/views/photo_galleries/index.html.erb +2 -2
- data/db/migrate/20140730201754_add_fingerprint_to_spud_photos.rb +6 -0
- data/lib/spud_photos/version.rb +1 -1
- metadata +6 -7
- data/app/assets/images/admin/photos/buttons/cog_16x16.png +0 -0
- data/app/assets/images/admin/photos/buttons/x_16x16.png +0 -0
- data/app/assets/images/admin/photos/photo_albums_thumb@2x.png +0 -0
data/lib/spud_photos/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tb_photos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.1.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Greg Woods
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -176,10 +176,7 @@ files:
|
|
176
176
|
- MIT-LICENSE
|
177
177
|
- README.markdown
|
178
178
|
- Rakefile
|
179
|
-
- app/assets/images/admin/photos/buttons/cog_16x16.png
|
180
|
-
- app/assets/images/admin/photos/buttons/x_16x16.png
|
181
179
|
- app/assets/images/admin/photos/photo_albums_thumb.png
|
182
|
-
- app/assets/images/admin/photos/photo_albums_thumb@2x.png
|
183
180
|
- app/assets/javascripts/admin/photos/application.js
|
184
181
|
- app/assets/javascripts/admin/photos/photos.js
|
185
182
|
- app/assets/stylesheets/admin/photos/application.css.scss
|
@@ -204,6 +201,7 @@ files:
|
|
204
201
|
- app/views/admin/photo_albums/edit.html.erb
|
205
202
|
- app/views/admin/photo_albums/index.html.erb
|
206
203
|
- app/views/admin/photo_albums/new.html.erb
|
204
|
+
- app/views/admin/photo_galleries/_album.html.erb
|
207
205
|
- app/views/admin/photo_galleries/_form.html.erb
|
208
206
|
- app/views/admin/photo_galleries/destroy.js.erb
|
209
207
|
- app/views/admin/photo_galleries/edit.html.erb
|
@@ -226,6 +224,7 @@ files:
|
|
226
224
|
- db/migrate/20120228232344_create_spud_photo_galleries.rb
|
227
225
|
- db/migrate/20120405042046_upgrade_photo_relationships.rb
|
228
226
|
- db/migrate/20121127210314_rename_order_to_sort_order.rb
|
227
|
+
- db/migrate/20140730201754_add_fingerprint_to_spud_photos.rb
|
229
228
|
- lib/generators/spud/photos/views_generator.rb
|
230
229
|
- lib/spud_photos/configuration.rb
|
231
230
|
- lib/spud_photos/engine.rb
|
@@ -275,9 +274,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
275
274
|
version: '0'
|
276
275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
277
276
|
requirements:
|
278
|
-
- - "
|
277
|
+
- - ">"
|
279
278
|
- !ruby/object:Gem::Version
|
280
|
-
version:
|
279
|
+
version: 1.3.1
|
281
280
|
requirements: []
|
282
281
|
rubyforge_project:
|
283
282
|
rubygems_version: 2.2.1
|
Binary file
|
Binary file
|
Binary file
|