tb_photos 1.0

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.
Files changed (61) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.markdown +75 -0
  4. data/Rakefile +28 -0
  5. data/app/assets/images/spud/photos/buttons/cog_16x16.png +0 -0
  6. data/app/assets/images/spud/photos/buttons/x_16x16.png +0 -0
  7. data/app/assets/images/spud/photos/photo_albums_thumb.png +0 -0
  8. data/app/assets/images/spud/photos/photo_albums_thumb@2x.png +0 -0
  9. data/app/assets/javascripts/spud/admin/photos.js +356 -0
  10. data/app/assets/stylesheets/spud/admin/photos.css +128 -0
  11. data/app/controllers/photo_albums_controller.rb +54 -0
  12. data/app/controllers/photo_galleries_controller.rb +17 -0
  13. data/app/controllers/spud/admin/photo_albums_controller.rb +64 -0
  14. data/app/controllers/spud/admin/photo_galleries_controller.rb +53 -0
  15. data/app/controllers/spud/admin/photos_controller.rb +93 -0
  16. data/app/helpers/photo_albums_helper.rb +2 -0
  17. data/app/helpers/photo_galleries_helper.rb +2 -0
  18. data/app/helpers/spud/admin/photo_albums_helper.rb +2 -0
  19. data/app/helpers/spud/admin/photo_galleries_helper.rb +2 -0
  20. data/app/helpers/spud/admin/photos_helper.rb +7 -0
  21. data/app/models/spud_photo.rb +29 -0
  22. data/app/models/spud_photo_album.rb +49 -0
  23. data/app/models/spud_photo_albums_photo.rb +5 -0
  24. data/app/models/spud_photo_galleries_album.rb +5 -0
  25. data/app/models/spud_photo_gallery.rb +36 -0
  26. data/app/models/spud_photo_sweeper.rb +39 -0
  27. data/app/views/layouts/spud/admin/spud_photos.html.erb +8 -0
  28. data/app/views/photo_albums/index.html.erb +24 -0
  29. data/app/views/photo_albums/show.html.erb +27 -0
  30. data/app/views/photo_galleries/index.html.erb +18 -0
  31. data/app/views/spud/admin/photo_albums/_album.html.erb +10 -0
  32. data/app/views/spud/admin/photo_albums/_form.html.erb +36 -0
  33. data/app/views/spud/admin/photo_albums/destroy.js.erb +1 -0
  34. data/app/views/spud/admin/photo_albums/edit.html.erb +1 -0
  35. data/app/views/spud/admin/photo_albums/index.html.erb +9 -0
  36. data/app/views/spud/admin/photo_albums/new.html.erb +1 -0
  37. data/app/views/spud/admin/photo_galleries/_form.html.erb +39 -0
  38. data/app/views/spud/admin/photo_galleries/destroy.js.erb +1 -0
  39. data/app/views/spud/admin/photo_galleries/edit.html.erb +1 -0
  40. data/app/views/spud/admin/photo_galleries/index.html.erb +17 -0
  41. data/app/views/spud/admin/photo_galleries/new.html.erb +1 -0
  42. data/app/views/spud/admin/photos/_form.html.erb +41 -0
  43. data/app/views/spud/admin/photos/_photo.html.erb +13 -0
  44. data/app/views/spud/admin/photos/destroy.js.erb +1 -0
  45. data/app/views/spud/admin/photos/edit.html.erb +1 -0
  46. data/app/views/spud/admin/photos/index.html.erb +3 -0
  47. data/app/views/spud/admin/photos/new.html.erb +1 -0
  48. data/app/views/spud/admin/photos/show.js.erb +5 -0
  49. data/config/routes.rb +24 -0
  50. data/db/migrate/20120228232120_create_spud_photos.rb +13 -0
  51. data/db/migrate/20120228232329_create_spud_photo_albums.rb +15 -0
  52. data/db/migrate/20120228232344_create_spud_photo_galleries.rb +15 -0
  53. data/db/migrate/20120405042046_upgrade_photo_relationships.rb +8 -0
  54. data/db/migrate/20121127210314_rename_order_to_sort_order.rb +6 -0
  55. data/lib/generators/spud/photos/views_generator.rb +14 -0
  56. data/lib/spud_photos/configuration.rb +21 -0
  57. data/lib/spud_photos/engine.rb +37 -0
  58. data/lib/spud_photos/version.rb +5 -0
  59. data/lib/tasks/spud_photos_tasks.rake +4 -0
  60. data/lib/tb_photos.rb +6 -0
  61. metadata +258 -0
@@ -0,0 +1,41 @@
1
+ <%= form_for @photo, :url => (@photo.new_record? ? spud_admin_photos_path : spud_admin_photo_path(@photo)), :html => {:id => 'spud_admin_photo_form', :target => 'spud_admin_photo_form_target', :class => 'form-horizontal'} do |f| %>
2
+
3
+ <%=error_messages_for(f.object)%>
4
+
5
+ <fieldset>
6
+ <legend>Photo Info</legend>
7
+ <div class="control-group">
8
+ <%= f.label :title, :class => "control-label" %>
9
+ <div class="controls">
10
+ <%= f.text_field :title %>
11
+ </div>
12
+ </div>
13
+ <div class="control-group">
14
+ <%= f.label :caption, :class => "control-label" %>
15
+ <div class="controls">
16
+ <%= f.text_field :caption %>
17
+ </div>
18
+ </div>
19
+ </fieldset>
20
+
21
+ <fieldset>
22
+ <legend>File Upload</legend>
23
+ <div class="control-group">
24
+ <%= f.label :photo, :class => "control-label" %>
25
+ <div class="controls">
26
+ <%= f.file_field :photo %>
27
+ </div>
28
+ </div>
29
+ <% unless @photo.new_record? %>
30
+ <div class="control-group">
31
+ <label class="control-label">Current Photo</label>
32
+ <div class="controls">
33
+ <%= image_tag @photo.photo.url(:spud_admin_medium) %>
34
+ </div>
35
+ </div>
36
+ <% end %>
37
+ </fieldset>
38
+
39
+ <iframe id="spud_admin_photo_form_target" name="spud_admin_photo_form_target" style="display:none;"></iframe>
40
+
41
+ <% end %>
@@ -0,0 +1,13 @@
1
+ <%= content_tag :div,
2
+ :rel => photo.id,
3
+ :id => "spud_admin_photo_#{photo.id}",
4
+ :style => "background-image:url('#{photo.photo.url(:spud_admin_small)}')",
5
+ :class => "spud_admin_photo_ui_thumb spud_admin_photo_ui_thumb_small spud_admin_photo" do %>
6
+ <div style="display:none;">
7
+ <%= hidden_field_tag 'spud_photo_album[photo_ids][]', photo.id %>
8
+ </div>
9
+ <div class="spud_admin_photo_ui_thumb_controls">
10
+ <%= link_to 'Edit', edit_spud_admin_photo_path(photo), :class => 'spud_admin_photos_btn_edit' %>
11
+ <%= link_to 'Delete', '#', :class => 'spud_admin_photos_btn_remove' %>
12
+ </div>
13
+ <% end %>
@@ -0,0 +1 @@
1
+ Spud.Admin.Photos.markPhotoAsDeleted(<%= @photo.id %>);
@@ -0,0 +1 @@
1
+ <%= render :partial => 'form' %>
@@ -0,0 +1,3 @@
1
+ <div id="spud_admin_photo_library" class="spud_admin_photo_ui_thumbs spud_admin_photo_ui_thumbs_selectable">
2
+ <%= render :partial => 'photo', :collection => @photos %>
3
+ <div>
@@ -0,0 +1 @@
1
+ <%= render :partial => 'form' %>
@@ -0,0 +1,5 @@
1
+ <% if @photo.errors.any? %>
2
+ Spud.Admin.Photos.photoLegacyUploadErrors("<%= escape_javascript(render 'form') %>");
3
+ <% else %>
4
+ Spud.Admin.Photos.photoLegacyUploadComplete(<%= @photo.id %>, "<%= escape_javascript(render :partial => 'photo', :locals => {:photo => @photo}) %>");
5
+ <% end %>
data/config/routes.rb ADDED
@@ -0,0 +1,24 @@
1
+ Rails.application.routes.draw do
2
+
3
+ namespace :spud do
4
+ namespace :admin do
5
+ resources :photos do
6
+ get 'library', :on => :collection
7
+ post 'mass_destroy', :on => :collection
8
+ end
9
+ resources :photo_albums
10
+ resources :photo_galleries
11
+ end
12
+ end
13
+
14
+ scope Spud::Photos.config.base_path do
15
+ if Spud::Photos.config.galleries_enabled
16
+ resources :photo_galleries, :only => :index, :path => '/' do
17
+ resources :photo_albums, :only => [:index, :show], :path => '/'
18
+ end
19
+ else
20
+ resources :photo_albums, :only => [:index, :show], :path => '/'
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,13 @@
1
+ class CreateSpudPhotos < ActiveRecord::Migration
2
+ def change
3
+ create_table :spud_photos do |t|
4
+ t.string :title
5
+ t.string :caption
6
+ t.string :photo_file_name
7
+ t.string :photo_content_type
8
+ t.integer :photo_file_size
9
+ t.datetime :photo_updated_at
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,15 @@
1
+ class CreateSpudPhotoAlbums < ActiveRecord::Migration
2
+ def change
3
+ create_table :spud_photo_albums do |t|
4
+ t.string :title
5
+ t.string :url_name
6
+ t.timestamps
7
+ end
8
+ create_table :spud_photo_albums_photos, :id => false do |t|
9
+ t.integer :spud_photo_album_id
10
+ t.integer :spud_photo_id
11
+ end
12
+ add_index :spud_photo_albums, :url_name, :name => "idx_album_url_name"
13
+ add_index :spud_photo_albums_photos, :spud_photo_album_id, :name => "idx_album_id"
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ class CreateSpudPhotoGalleries < ActiveRecord::Migration
2
+ def change
3
+ create_table :spud_photo_galleries do |t|
4
+ t.string :title
5
+ t.string :url_name
6
+ t.timestamps
7
+ end
8
+ create_table :spud_photo_galleries_albums, :id => false do |t|
9
+ t.integer :spud_photo_gallery_id
10
+ t.integer :spud_photo_album_id
11
+ end
12
+ add_index :spud_photo_galleries, :url_name, :name => "idx_gallery_url_name"
13
+ add_index :spud_photo_galleries_albums, :spud_photo_gallery_id, :name => "idx_gallery_id"
14
+ end
15
+ end
@@ -0,0 +1,8 @@
1
+ class UpgradePhotoRelationships < ActiveRecord::Migration
2
+ def change
3
+ add_column :spud_photo_albums_photos, :id, :primary_key
4
+ add_column :spud_photo_albums_photos, :order, :integer, :default => 0
5
+ add_column :spud_photo_galleries_albums, :id, :primary_key
6
+ add_column :spud_photo_galleries_albums, :order, :integer, :default => 0
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ class RenameOrderToSortOrder < ActiveRecord::Migration
2
+ def change
3
+ rename_column :spud_photo_albums_photos, :order, :sort_order
4
+ rename_column :spud_photo_galleries_albums, :order, :sort_order
5
+ end
6
+ end
@@ -0,0 +1,14 @@
1
+ require 'rails/generators/migration'
2
+
3
+ class Spud::Photos::ViewsGenerator < ::Rails::Generators::Base
4
+
5
+ source_root File.expand_path('../../../../../app/views', __FILE__)
6
+
7
+ def install
8
+ if Spud::Photos.config.galleries_enabled
9
+ copy_file 'photo_galleries/index.html.erb', 'app/views/photo_galleries/index.html.erb'
10
+ end
11
+ copy_file 'photo_albums/index.html.erb', 'app/views/photo_albums/index.html.erb'
12
+ copy_file 'photo_albums/show.html.erb', 'app/views/photo_albums/show.html.erb'
13
+ end
14
+ end
@@ -0,0 +1,21 @@
1
+ module Spud
2
+ module Photos
3
+ include ActiveSupport::Configurable
4
+ config_accessor :photo_styles, :convert_options, :galleries_enabled, :base_layout, :base_path,:s3_credentials,:storage_path,:storage_url,:paperclip_storage, :enable_full_page_caching, :page_caches_to_sweep
5
+ self.photo_styles = {
6
+ :small => '50x50#',
7
+ :medium => '200x200#',
8
+ :large => '400x400#'
9
+ }
10
+ self.convert_options = {}
11
+ self.galleries_enabled = false
12
+ self.base_layout = 'application'
13
+ self.base_path = 'photos'
14
+ self.paperclip_storage = :filesystem
15
+ self.s3_credentials = "#{Rails.root}/config/s3.yml"
16
+ self.storage_path = ":rails_root/public/system/spud_photos/:id/:style/:basename.:extension"
17
+ self.storage_url = "/system/spud_photos/:id/:style/:basename.:extension"
18
+ self.enable_full_page_caching = false
19
+ self.page_caches_to_sweep = []
20
+ end
21
+ end
@@ -0,0 +1,37 @@
1
+ require 'tb_core'
2
+ require 'paperclip'
3
+
4
+ module Spud
5
+ module Photos
6
+ class Engine < Rails::Engine
7
+ engine_name :tb_photos
8
+ initializer :assets_photos do |config|
9
+ Rails.application.config.assets.precompile += ["spud/admin/photos*"]
10
+ end
11
+ initializer :admin_photos do
12
+ Spud::Core.config.admin_applications += [{
13
+ :name => 'Photo Albums',
14
+ :thumbnail => 'spud/photos/photo_albums_thumb.png',
15
+ :url => '/spud/admin/photo_albums',
16
+ :retina => true,
17
+ :order => 82
18
+ # },{
19
+ # :name => 'Photos',
20
+ # :thumbnail => 'spud/photos/photo_albums_thumb.png',
21
+ # :url => '/spud/admin/photos',
22
+ # :retina => true,
23
+ # :order => 83
24
+ }]
25
+ if Spud::Photos.config.galleries_enabled
26
+ Spud::Core.config.admin_applications += [{
27
+ :name => 'Photo Galleries',
28
+ :thumbnail => 'spud/photos/photo_albums_thumb.png',
29
+ :url => '/spud/admin/photo_galleries',
30
+ :retina => true,
31
+ :order => 81
32
+ }]
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,5 @@
1
+ module Spud
2
+ module Photos
3
+ VERSION = "1.0"
4
+ end
5
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :spud_photos do
3
+ # # Task goes here
4
+ # end
data/lib/tb_photos.rb ADDED
@@ -0,0 +1,6 @@
1
+ module Spud
2
+ module Photos
3
+ require 'spud_photos/configuration'
4
+ require 'spud_photos/engine' if defined?(Rails)
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,258 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tb_photos
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.0'
5
+ platform: ruby
6
+ authors:
7
+ - Greg Woods
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-06-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: tb_core
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: paperclip
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: mysql2
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 0.3.11
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: 0.3.11
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '='
74
+ - !ruby/object:Gem::Version
75
+ version: 2.8.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '='
81
+ - !ruby/object:Gem::Version
82
+ version: 2.8.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 2.8.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 2.8.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: shoulda
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ~>
102
+ - !ruby/object:Gem::Version
103
+ version: 3.0.1
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: 3.0.1
111
+ - !ruby/object:Gem::Dependency
112
+ name: factory_girl
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '='
116
+ - !ruby/object:Gem::Version
117
+ version: 2.5.0
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '='
123
+ - !ruby/object:Gem::Version
124
+ version: 2.5.0
125
+ - !ruby/object:Gem::Dependency
126
+ name: mocha
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - '='
130
+ - !ruby/object:Gem::Version
131
+ version: 0.10.3
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - '='
137
+ - !ruby/object:Gem::Version
138
+ version: 0.10.3
139
+ - !ruby/object:Gem::Dependency
140
+ name: database_cleaner
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - '='
144
+ - !ruby/object:Gem::Version
145
+ version: 0.7.1
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - '='
151
+ - !ruby/object:Gem::Version
152
+ version: 0.7.1
153
+ - !ruby/object:Gem::Dependency
154
+ name: simplecov
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ~>
158
+ - !ruby/object:Gem::Version
159
+ version: 0.6.4
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ~>
165
+ - !ruby/object:Gem::Version
166
+ version: 0.6.4
167
+ description: Twice Baked is a feature complete photo management/gallery for the spud
168
+ engine. Manage multiple galleries, albums, and photos. Use HTML 5 to drag and drop
169
+ many images at once.
170
+ email:
171
+ - greg@westlakedesign.com
172
+ executables: []
173
+ extensions: []
174
+ extra_rdoc_files: []
175
+ files:
176
+ - app/assets/images/spud/photos/buttons/cog_16x16.png
177
+ - app/assets/images/spud/photos/buttons/x_16x16.png
178
+ - app/assets/images/spud/photos/photo_albums_thumb.png
179
+ - app/assets/images/spud/photos/photo_albums_thumb@2x.png
180
+ - app/assets/javascripts/spud/admin/photos.js
181
+ - app/assets/stylesheets/spud/admin/photos.css
182
+ - app/controllers/photo_albums_controller.rb
183
+ - app/controllers/photo_galleries_controller.rb
184
+ - app/controllers/spud/admin/photo_albums_controller.rb
185
+ - app/controllers/spud/admin/photo_galleries_controller.rb
186
+ - app/controllers/spud/admin/photos_controller.rb
187
+ - app/helpers/photo_albums_helper.rb
188
+ - app/helpers/photo_galleries_helper.rb
189
+ - app/helpers/spud/admin/photo_albums_helper.rb
190
+ - app/helpers/spud/admin/photo_galleries_helper.rb
191
+ - app/helpers/spud/admin/photos_helper.rb
192
+ - app/models/spud_photo.rb
193
+ - app/models/spud_photo_album.rb
194
+ - app/models/spud_photo_albums_photo.rb
195
+ - app/models/spud_photo_galleries_album.rb
196
+ - app/models/spud_photo_gallery.rb
197
+ - app/models/spud_photo_sweeper.rb
198
+ - app/views/layouts/spud/admin/spud_photos.html.erb
199
+ - app/views/photo_albums/index.html.erb
200
+ - app/views/photo_albums/show.html.erb
201
+ - app/views/photo_galleries/index.html.erb
202
+ - app/views/spud/admin/photo_albums/_album.html.erb
203
+ - app/views/spud/admin/photo_albums/_form.html.erb
204
+ - app/views/spud/admin/photo_albums/destroy.js.erb
205
+ - app/views/spud/admin/photo_albums/edit.html.erb
206
+ - app/views/spud/admin/photo_albums/index.html.erb
207
+ - app/views/spud/admin/photo_albums/new.html.erb
208
+ - app/views/spud/admin/photo_galleries/_form.html.erb
209
+ - app/views/spud/admin/photo_galleries/destroy.js.erb
210
+ - app/views/spud/admin/photo_galleries/edit.html.erb
211
+ - app/views/spud/admin/photo_galleries/index.html.erb
212
+ - app/views/spud/admin/photo_galleries/new.html.erb
213
+ - app/views/spud/admin/photos/_form.html.erb
214
+ - app/views/spud/admin/photos/_photo.html.erb
215
+ - app/views/spud/admin/photos/destroy.js.erb
216
+ - app/views/spud/admin/photos/edit.html.erb
217
+ - app/views/spud/admin/photos/index.html.erb
218
+ - app/views/spud/admin/photos/new.html.erb
219
+ - app/views/spud/admin/photos/show.js.erb
220
+ - config/routes.rb
221
+ - db/migrate/20120228232120_create_spud_photos.rb
222
+ - db/migrate/20120228232329_create_spud_photo_albums.rb
223
+ - db/migrate/20120228232344_create_spud_photo_galleries.rb
224
+ - db/migrate/20120405042046_upgrade_photo_relationships.rb
225
+ - db/migrate/20121127210314_rename_order_to_sort_order.rb
226
+ - lib/generators/spud/photos/views_generator.rb
227
+ - lib/spud_photos/configuration.rb
228
+ - lib/spud_photos/engine.rb
229
+ - lib/spud_photos/version.rb
230
+ - lib/tasks/spud_photos_tasks.rake
231
+ - lib/tb_photos.rb
232
+ - MIT-LICENSE
233
+ - Rakefile
234
+ - README.markdown
235
+ homepage: http://www.github.com/gregawoods/spud_photos
236
+ licenses: []
237
+ metadata: {}
238
+ post_install_message:
239
+ rdoc_options: []
240
+ require_paths:
241
+ - lib
242
+ required_ruby_version: !ruby/object:Gem::Requirement
243
+ requirements:
244
+ - - ! '>='
245
+ - !ruby/object:Gem::Version
246
+ version: '0'
247
+ required_rubygems_version: !ruby/object:Gem::Requirement
248
+ requirements:
249
+ - - ! '>='
250
+ - !ruby/object:Gem::Version
251
+ version: '0'
252
+ requirements: []
253
+ rubyforge_project:
254
+ rubygems_version: 2.0.3
255
+ signing_key:
256
+ specification_version: 4
257
+ summary: Twice Baked Engine
258
+ test_files: []