├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap.js.coffee │ │ ├── galleries.js.coffee │ │ ├── main.js │ │ └── pictures.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css.less │ │ ├── loading.gif │ │ └── pictures.css ├── controllers │ ├── application_controller.rb │ ├── galleries_controller.rb │ └── pictures_controller.rb ├── helpers │ ├── application_helper.rb │ ├── galleries_helper.rb │ └── pictures_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── gallery.rb │ └── picture.rb ├── uploaders │ └── image_uploader.rb └── views │ ├── galleries │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── layouts │ └── application.html.erb │ └── pictures │ ├── _form.html.erb │ ├── destroy.js.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── make_default.js.erb │ ├── new.html.erb │ └── show.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── en.bootstrap.yml │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20120529074915_create_galleries.rb │ ├── 20120529075041_create_pictures.rb │ ├── 20130319201121_add_token_to_gallery.rb │ ├── 20130319201547_add_gallery_token_to_picture.rb │ └── 20140320121939_add_attachment_image_to_pictures.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── rails └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/galleries.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/javascripts/galleries.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/javascripts/main.js -------------------------------------------------------------------------------- /app/assets/javascripts/pictures.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/javascripts/pictures.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/stylesheets/loading.gif -------------------------------------------------------------------------------- /app/assets/stylesheets/pictures.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/assets/stylesheets/pictures.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/galleries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/controllers/galleries_controller.rb -------------------------------------------------------------------------------- /app/controllers/pictures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/controllers/pictures_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/galleries_helper.rb: -------------------------------------------------------------------------------- 1 | module GalleriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pictures_helper.rb: -------------------------------------------------------------------------------- 1 | module PicturesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/gallery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/models/gallery.rb -------------------------------------------------------------------------------- /app/models/picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/models/picture.rb -------------------------------------------------------------------------------- /app/uploaders/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/uploaders/image_uploader.rb -------------------------------------------------------------------------------- /app/views/galleries/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/galleries/_form.html.erb -------------------------------------------------------------------------------- /app/views/galleries/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/galleries/edit.html.erb -------------------------------------------------------------------------------- /app/views/galleries/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/galleries/index.html.erb -------------------------------------------------------------------------------- /app/views/galleries/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/galleries/new.html.erb -------------------------------------------------------------------------------- /app/views/galleries/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/galleries/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/pictures/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/pictures/_form.html.erb -------------------------------------------------------------------------------- /app/views/pictures/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/pictures/destroy.js.erb -------------------------------------------------------------------------------- /app/views/pictures/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/pictures/edit.html.erb -------------------------------------------------------------------------------- /app/views/pictures/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/pictures/index.html.erb -------------------------------------------------------------------------------- /app/views/pictures/make_default.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/pictures/make_default.js.erb -------------------------------------------------------------------------------- /app/views/pictures/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/pictures/new.html.erb -------------------------------------------------------------------------------- /app/views/pictures/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/app/views/pictures/show.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20120529074915_create_galleries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/db/migrate/20120529074915_create_galleries.rb -------------------------------------------------------------------------------- /db/migrate/20120529075041_create_pictures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/db/migrate/20120529075041_create_pictures.rb -------------------------------------------------------------------------------- /db/migrate/20130319201121_add_token_to_gallery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/db/migrate/20130319201121_add_token_to_gallery.rb -------------------------------------------------------------------------------- /db/migrate/20130319201547_add_gallery_token_to_picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/db/migrate/20130319201547_add_gallery_token_to_picture.rb -------------------------------------------------------------------------------- /db/migrate/20140320121939_add_attachment_image_to_pictures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/db/migrate/20140320121939_add_attachment_image_to_pictures.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackhowtofaq/multiple_file_upload_paperclip_rails/HEAD/script/rails -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------