├── README.md ├── automation ├── Reconstruct Me.ahk ├── clean_scan.bat ├── clean_scan.mlx └── move_scans.bat ├── scanbooth_web ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.rdoc ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── rails.png │ │ ├── javascripts │ │ │ ├── admin.js.coffee │ │ │ ├── application.js │ │ │ ├── users.js.coffee │ │ │ └── welcome.js.coffee │ │ └── stylesheets │ │ │ ├── admin.css.scss │ │ │ ├── application.css │ │ │ ├── scaffolds.css.scss │ │ │ ├── users.css.scss │ │ │ └── welcome.css.scss │ ├── controllers │ │ ├── admin_controller.rb │ │ ├── application_controller.rb │ │ ├── users_controller.rb │ │ └── welcome_controller.rb │ ├── helpers │ │ ├── admin_helper.rb │ │ ├── application_helper.rb │ │ ├── users_helper.rb │ │ └── welcome_helper.rb │ ├── jobs │ │ ├── ftp_upload.rb │ │ └── sketchfab_upload.rb │ ├── mailers │ │ ├── .gitkeep │ │ └── user_mailer.rb │ ├── models │ │ ├── .gitkeep │ │ └── user.rb │ └── views │ │ ├── admin │ │ └── index.html.erb │ │ ├── layouts │ │ └── application.html.erb │ │ ├── user_mailer │ │ ├── scan_email.html.erb │ │ └── scan_email.text.erb │ │ ├── users │ │ ├── _admin_form.html.erb │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── scan_processed.html.erb │ │ └── show.html.erb │ │ └── welcome │ │ ├── index.html.erb │ │ └── thanks.html.erb ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── backtrace_silencers.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── resque.rb │ │ ├── secret_token.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ └── routes.rb ├── db │ ├── migrate │ │ ├── 20120921172401_create_users.rb │ │ ├── 20120923184415_add_external_download_id_to_user.rb │ │ ├── 20120923184455_rename_user_external_id_to_external_view_id.rb │ │ └── 20120923205345_add_status_bools_to_user.rb │ ├── schema.rb │ └── seeds.rb ├── doc │ └── README_FOR_APP ├── dump.rdb ├── lib │ ├── assets │ │ └── .gitkeep │ └── tasks │ │ ├── .gitkeep │ │ └── resque.rake ├── log │ └── .gitkeep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt ├── script │ └── rails ├── test │ ├── fixtures │ │ ├── .gitkeep │ │ └── users.yml │ ├── functional │ │ ├── .gitkeep │ │ ├── admin_controller_test.rb │ │ ├── user_mailer_test.rb │ │ ├── users_controller_test.rb │ │ └── welcome_controller_test.rb │ ├── integration │ │ └── .gitkeep │ ├── performance │ │ └── browsing_test.rb │ ├── test_helper.rb │ └── unit │ │ ├── .gitkeep │ │ ├── helpers │ │ ├── admin_helper_test.rb │ │ ├── users_helper_test.rb │ │ └── welcome_helper_test.rb │ │ └── user_test.rb └── vendor │ ├── assets │ ├── javascripts │ │ └── .gitkeep │ └── stylesheets │ │ └── .gitkeep │ └── plugins │ └── .gitkeep └── scans ├── cleaned └── .gitkeep └── raw └── .gitkeep /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/README.md -------------------------------------------------------------------------------- /automation/Reconstruct Me.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/automation/Reconstruct Me.ahk -------------------------------------------------------------------------------- /automation/clean_scan.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/automation/clean_scan.bat -------------------------------------------------------------------------------- /automation/clean_scan.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/automation/clean_scan.mlx -------------------------------------------------------------------------------- /automation/move_scans.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/automation/move_scans.bat -------------------------------------------------------------------------------- /scanbooth_web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/.gitignore -------------------------------------------------------------------------------- /scanbooth_web/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/Gemfile -------------------------------------------------------------------------------- /scanbooth_web/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/Gemfile.lock -------------------------------------------------------------------------------- /scanbooth_web/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/README.rdoc -------------------------------------------------------------------------------- /scanbooth_web/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/Rakefile -------------------------------------------------------------------------------- /scanbooth_web/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/images/rails.png -------------------------------------------------------------------------------- /scanbooth_web/app/assets/javascripts/admin.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/javascripts/admin.js.coffee -------------------------------------------------------------------------------- /scanbooth_web/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /scanbooth_web/app/assets/javascripts/users.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/javascripts/users.js.coffee -------------------------------------------------------------------------------- /scanbooth_web/app/assets/javascripts/welcome.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/javascripts/welcome.js.coffee -------------------------------------------------------------------------------- /scanbooth_web/app/assets/stylesheets/admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/stylesheets/admin.css.scss -------------------------------------------------------------------------------- /scanbooth_web/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /scanbooth_web/app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /scanbooth_web/app/assets/stylesheets/users.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/stylesheets/users.css.scss -------------------------------------------------------------------------------- /scanbooth_web/app/assets/stylesheets/welcome.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/assets/stylesheets/welcome.css.scss -------------------------------------------------------------------------------- /scanbooth_web/app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /scanbooth_web/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /scanbooth_web/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /scanbooth_web/app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/controllers/welcome_controller.rb -------------------------------------------------------------------------------- /scanbooth_web/app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- 1 | module AdminHelper 2 | end 3 | -------------------------------------------------------------------------------- /scanbooth_web/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /scanbooth_web/app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /scanbooth_web/app/helpers/welcome_helper.rb: -------------------------------------------------------------------------------- 1 | module WelcomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /scanbooth_web/app/jobs/ftp_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/jobs/ftp_upload.rb -------------------------------------------------------------------------------- /scanbooth_web/app/jobs/sketchfab_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/jobs/sketchfab_upload.rb -------------------------------------------------------------------------------- /scanbooth_web/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /scanbooth_web/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/models/user.rb -------------------------------------------------------------------------------- /scanbooth_web/app/views/admin/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/admin/index.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/user_mailer/scan_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/user_mailer/scan_email.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/user_mailer/scan_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/user_mailer/scan_email.text.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/users/_admin_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/users/_admin_form.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/users/index.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/users/new.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/users/scan_processed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/users/scan_processed.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/users/show.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/welcome/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/welcome/index.html.erb -------------------------------------------------------------------------------- /scanbooth_web/app/views/welcome/thanks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/app/views/welcome/thanks.html.erb -------------------------------------------------------------------------------- /scanbooth_web/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config.ru -------------------------------------------------------------------------------- /scanbooth_web/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/application.rb -------------------------------------------------------------------------------- /scanbooth_web/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/boot.rb -------------------------------------------------------------------------------- /scanbooth_web/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/database.yml -------------------------------------------------------------------------------- /scanbooth_web/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/environment.rb -------------------------------------------------------------------------------- /scanbooth_web/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/environments/development.rb -------------------------------------------------------------------------------- /scanbooth_web/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/environments/production.rb -------------------------------------------------------------------------------- /scanbooth_web/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/environments/test.rb -------------------------------------------------------------------------------- /scanbooth_web/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /scanbooth_web/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/initializers/inflections.rb -------------------------------------------------------------------------------- /scanbooth_web/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /scanbooth_web/config/initializers/resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/initializers/resque.rb -------------------------------------------------------------------------------- /scanbooth_web/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /scanbooth_web/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/initializers/session_store.rb -------------------------------------------------------------------------------- /scanbooth_web/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /scanbooth_web/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/locales/en.yml -------------------------------------------------------------------------------- /scanbooth_web/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/config/routes.rb -------------------------------------------------------------------------------- /scanbooth_web/db/migrate/20120921172401_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/db/migrate/20120921172401_create_users.rb -------------------------------------------------------------------------------- /scanbooth_web/db/migrate/20120923184415_add_external_download_id_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/db/migrate/20120923184415_add_external_download_id_to_user.rb -------------------------------------------------------------------------------- /scanbooth_web/db/migrate/20120923184455_rename_user_external_id_to_external_view_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/db/migrate/20120923184455_rename_user_external_id_to_external_view_id.rb -------------------------------------------------------------------------------- /scanbooth_web/db/migrate/20120923205345_add_status_bools_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/db/migrate/20120923205345_add_status_bools_to_user.rb -------------------------------------------------------------------------------- /scanbooth_web/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/db/schema.rb -------------------------------------------------------------------------------- /scanbooth_web/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/db/seeds.rb -------------------------------------------------------------------------------- /scanbooth_web/doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/doc/README_FOR_APP -------------------------------------------------------------------------------- /scanbooth_web/dump.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/dump.rdb -------------------------------------------------------------------------------- /scanbooth_web/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/lib/tasks/resque.rake: -------------------------------------------------------------------------------- 1 | require 'resque/tasks' 2 | -------------------------------------------------------------------------------- /scanbooth_web/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/public/404.html -------------------------------------------------------------------------------- /scanbooth_web/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/public/422.html -------------------------------------------------------------------------------- /scanbooth_web/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/public/500.html -------------------------------------------------------------------------------- /scanbooth_web/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/public/robots.txt -------------------------------------------------------------------------------- /scanbooth_web/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/script/rails -------------------------------------------------------------------------------- /scanbooth_web/test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/fixtures/users.yml -------------------------------------------------------------------------------- /scanbooth_web/test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/test/functional/admin_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/functional/admin_controller_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/functional/user_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/functional/user_mailer_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/functional/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/functional/users_controller_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/functional/welcome_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/functional/welcome_controller_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/test_helper.rb -------------------------------------------------------------------------------- /scanbooth_web/test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/test/unit/helpers/admin_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/unit/helpers/admin_helper_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/unit/helpers/users_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/unit/helpers/users_helper_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/unit/helpers/welcome_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/unit/helpers/welcome_helper_test.rb -------------------------------------------------------------------------------- /scanbooth_web/test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherrm/scanbooth/HEAD/scanbooth_web/test/unit/user_test.rb -------------------------------------------------------------------------------- /scanbooth_web/vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scanbooth_web/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/cleaned/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/raw/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------