├── .env.sample ├── .gitignore ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── admin │ ├── admin_user.rb │ ├── dashboard.rb │ └── users.rb ├── assets │ ├── images │ │ ├── email │ │ │ ├── facebook.jpg │ │ │ ├── harrys-is-coming.jpg │ │ │ ├── logo.jpg │ │ │ ├── refer.jpg │ │ │ └── twitter.jpg │ │ ├── favicon.ico │ │ ├── home │ │ │ ├── hero.jpg │ │ │ ├── hero@2x.jpg │ │ │ ├── key.png │ │ │ └── key@2x.png │ │ └── refer │ │ │ ├── blade-explain.png │ │ │ ├── blade-explain@2x.png │ │ │ ├── cream-tooltip.jpg │ │ │ ├── cream-tooltip.png │ │ │ ├── cream-tooltip@2x.jpg │ │ │ ├── cream-tooltip@2x.png │ │ │ ├── fb.png │ │ │ ├── fb@2x.png │ │ │ ├── logo.png │ │ │ ├── logo@2x.png │ │ │ ├── mammoth.png │ │ │ ├── mammoth@2x.png │ │ │ ├── progress-bg.png │ │ │ ├── progress-bg@2x.png │ │ │ ├── progress-done.png │ │ │ ├── progress-done@2x.png │ │ │ ├── truman.png │ │ │ ├── truman@2x.png │ │ │ ├── twit.png │ │ │ ├── twit@2x.png │ │ │ ├── winston.png │ │ │ └── winston@2x.png │ ├── javascripts │ │ ├── active_admin.js │ │ ├── application.js │ │ └── users.js │ └── stylesheets │ │ ├── _core.scss │ │ ├── _users.scss │ │ ├── active_admin.css.scss │ │ ├── application.scss │ │ ├── bootstrap.css │ │ └── reset.css ├── controllers │ ├── application_controller.rb │ └── users_controller.rb ├── helpers │ ├── application_helper.rb │ └── users_helper.rb ├── mailers │ ├── .gitkeep │ └── user_mailer.rb ├── models │ ├── .gitkeep │ ├── admin_user.rb │ ├── ip_address.rb │ └── user.rb └── views │ ├── layouts │ └── application.html.erb │ ├── user_mailer │ └── signup_email.html.erb │ └── users │ ├── _campaign_ended.html.erb │ ├── _campaign_ongoing.html.erb │ ├── new.html.erb │ ├── policy.html.erb │ └── refer.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── database.yml.sample ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── active_admin.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── devise.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ ├── strong_parameters.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── routes.rb ├── secrets.yml └── unicorn.rb ├── db ├── migrate │ ├── 20130126215239_create_users.rb │ ├── 20130127063936_devise_create_admin_users.rb │ ├── 20130127063939_create_admin_notes.rb │ ├── 20130127063940_move_admin_notes_to_comments.rb │ ├── 20130227185712_create_delayed_jobs.rb │ └── 20130312045541_create_ip_addresses.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep └── tasks │ └── prelaunchr.rake ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script ├── delayed_job └── rails ├── spec ├── controllers │ └── user_spec.rb ├── integration │ └── user_spec.rb ├── models │ └── user_spec.rb ├── rails_helper.rb └── spec_helper.rb └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/Rakefile -------------------------------------------------------------------------------- /app/admin/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/admin/admin_user.rb -------------------------------------------------------------------------------- /app/admin/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/admin/dashboard.rb -------------------------------------------------------------------------------- /app/admin/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/admin/users.rb -------------------------------------------------------------------------------- /app/assets/images/email/facebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/email/facebook.jpg -------------------------------------------------------------------------------- /app/assets/images/email/harrys-is-coming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/email/harrys-is-coming.jpg -------------------------------------------------------------------------------- /app/assets/images/email/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/email/logo.jpg -------------------------------------------------------------------------------- /app/assets/images/email/refer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/email/refer.jpg -------------------------------------------------------------------------------- /app/assets/images/email/twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/email/twitter.jpg -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/home/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/home/hero.jpg -------------------------------------------------------------------------------- /app/assets/images/home/hero@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/home/hero@2x.jpg -------------------------------------------------------------------------------- /app/assets/images/home/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/home/key.png -------------------------------------------------------------------------------- /app/assets/images/home/key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/home/key@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/blade-explain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/blade-explain.png -------------------------------------------------------------------------------- /app/assets/images/refer/blade-explain@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/blade-explain@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/cream-tooltip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/cream-tooltip.jpg -------------------------------------------------------------------------------- /app/assets/images/refer/cream-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/cream-tooltip.png -------------------------------------------------------------------------------- /app/assets/images/refer/cream-tooltip@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/cream-tooltip@2x.jpg -------------------------------------------------------------------------------- /app/assets/images/refer/cream-tooltip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/cream-tooltip@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/fb.png -------------------------------------------------------------------------------- /app/assets/images/refer/fb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/fb@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/logo.png -------------------------------------------------------------------------------- /app/assets/images/refer/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/logo@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/mammoth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/mammoth.png -------------------------------------------------------------------------------- /app/assets/images/refer/mammoth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/mammoth@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/progress-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/progress-bg.png -------------------------------------------------------------------------------- /app/assets/images/refer/progress-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/progress-bg@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/progress-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/progress-done.png -------------------------------------------------------------------------------- /app/assets/images/refer/progress-done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/progress-done@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/truman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/truman.png -------------------------------------------------------------------------------- /app/assets/images/refer/truman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/truman@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/twit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/twit.png -------------------------------------------------------------------------------- /app/assets/images/refer/twit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/twit@2x.png -------------------------------------------------------------------------------- /app/assets/images/refer/winston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/winston.png -------------------------------------------------------------------------------- /app/assets/images/refer/winston@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/images/refer/winston@2x.png -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js: -------------------------------------------------------------------------------- 1 | //= require active_admin/base 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/javascripts/users.js -------------------------------------------------------------------------------- /app/assets/stylesheets/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/stylesheets/_core.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/stylesheets/_users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/stylesheets/active_admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /app/assets/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/assets/stylesheets/reset.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/models/admin_user.rb -------------------------------------------------------------------------------- /app/models/ip_address.rb: -------------------------------------------------------------------------------- 1 | class IpAddress < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/signup_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/views/user_mailer/signup_email.html.erb -------------------------------------------------------------------------------- /app/views/users/_campaign_ended.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/views/users/_campaign_ended.html.erb -------------------------------------------------------------------------------- /app/views/users/_campaign_ongoing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/views/users/_campaign_ongoing.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/policy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/views/users/policy.html.erb -------------------------------------------------------------------------------- /app/views/users/refer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/app/views/users/refer.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/database.yml.sample -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/strong_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/strong_parameters.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/migrate/20130126215239_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/migrate/20130126215239_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20130127063936_devise_create_admin_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/migrate/20130127063936_devise_create_admin_users.rb -------------------------------------------------------------------------------- /db/migrate/20130127063939_create_admin_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/migrate/20130127063939_create_admin_notes.rb -------------------------------------------------------------------------------- /db/migrate/20130127063940_move_admin_notes_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/migrate/20130127063940_move_admin_notes_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20130227185712_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/migrate/20130227185712_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20130312045541_create_ip_addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/migrate/20130312045541_create_ip_addresses.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/prelaunchr.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/lib/tasks/prelaunchr.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/script/delayed_job -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/spec/controllers/user_spec.rb -------------------------------------------------------------------------------- /spec/integration/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/spec/integration/user_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrystech/prelaunchr/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------