-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6698078
Showing
127 changed files
with
3,077 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
S3_KEY=INSERT_YOUR_S3_KEY_HERE | ||
S3_SECRET=INSERT_YOUR_S3_SECRET_KEY_HERE | ||
|
||
REDIS_URL=redis://localhost:6379 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# See https://help.github.com/articles/ignoring-files for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/*.log | ||
/tmp | ||
|
||
/config/database.yml | ||
/public/uploads | ||
.env | ||
dump.rdb | ||
|
||
.DS_Store | ||
.ruby-version | ||
.rbenv-version | ||
redis_state.rdb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--color | ||
--require spec_helper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
source 'https://rubygems.org' | ||
|
||
ruby '2.1.6' | ||
|
||
gem 'rails', '~> 4.2' | ||
|
||
# Web | ||
# gem 'unicorn' | ||
# gem 'puma' | ||
# gem 'rails_12factor' # required for heroku applications | ||
gem 'thin' | ||
|
||
# Databases | ||
gem 'pg' | ||
gem 'redis' | ||
gem 'redis-objects' | ||
|
||
# Assets | ||
gem "reimagine2", git: "[email protected]:challengepost/reimagine.git", branch: "master" | ||
|
||
gem 'coffee-rails', '~> 4.0.0' | ||
gem 'compass-rails' | ||
gem 'rack-cors', require: 'rack/cors' | ||
gem 'sass-rails', '~> 4.0.0' | ||
gem 'smusher', require: false | ||
gem 'uglifier', '>= 1.3.0' | ||
|
||
# Authentication | ||
gem 'cancan' | ||
gem 'devise' | ||
|
||
# Views | ||
gem 'kaminari' | ||
gem 'simple_form' | ||
|
||
# Attachments | ||
gem 'carrierwave' | ||
gem 'carrierwave_backgrounder' | ||
gem 'fog', '>= 1.3.1' | ||
gem 'mini_magick' | ||
|
||
# Background | ||
gem 'sidekiq' | ||
gem 'sinatra' # for sidekiq ui | ||
|
||
# Use jQuery as the JavaScript library | ||
gem 'jquery-rails' | ||
|
||
# Monitoring/System | ||
gem 'figleaf' | ||
|
||
# Tracking | ||
gem 'mixpanel' | ||
|
||
# Models | ||
gem 'email_validator' | ||
|
||
group :development, :test do | ||
gem 'factory_girl_rails', '~> 4.0' | ||
gem 'launchy' | ||
gem 'rspec-rails' | ||
gem 'shoulda-matchers' | ||
gem 'steak' | ||
gem 'timecop' | ||
|
||
gem 'pry' | ||
gem 'pry-byebug' | ||
gem 'pry-rails' | ||
gem 'pry-remote' | ||
end | ||
|
||
group :development do | ||
# gem 'rack-livereload' | ||
gem 'foreman' | ||
gem 'guard-livereload' | ||
gem 'rename' # renames your app you can remove after use | ||
end | ||
|
||
gem 'whenever', require: false |
Oops, something went wrong.