Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rossta committed Jul 15, 2015
0 parents commit 6698078
Show file tree
Hide file tree
Showing 127 changed files with 3,077 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .env-example
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
26 changes: 26 additions & 0 deletions .gitignore
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
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--require spec_helper
1 change: 1 addition & 0 deletions .ruby-version-example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.1.1
79 changes: 79 additions & 0 deletions Gemfile
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
Loading

0 comments on commit 6698078

Please sign in to comment.