Skip to content

Commit 6698078

Browse files
committed
Initial commit
0 parents  commit 6698078

File tree

127 files changed

+3077
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+3077
-0
lines changed

.env-example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
S3_KEY=INSERT_YOUR_S3_KEY_HERE
2+
S3_SECRET=INSERT_YOUR_S3_SECRET_KEY_HERE
3+
4+
REDIS_URL=redis://localhost:6379

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*.log
16+
/tmp
17+
18+
/config/database.yml
19+
/public/uploads
20+
.env
21+
dump.rdb
22+
23+
.DS_Store
24+
.ruby-version
25+
.rbenv-version
26+
redis_state.rdb

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--require spec_helper

.ruby-version-example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.1.1

Gemfile

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
source 'https://rubygems.org'
2+
3+
ruby '2.1.6'
4+
5+
gem 'rails', '~> 4.2'
6+
7+
# Web
8+
# gem 'unicorn'
9+
# gem 'puma'
10+
# gem 'rails_12factor' # required for heroku applications
11+
gem 'thin'
12+
13+
# Databases
14+
gem 'pg'
15+
gem 'redis'
16+
gem 'redis-objects'
17+
18+
# Assets
19+
gem "reimagine2", git: "[email protected]:challengepost/reimagine.git", branch: "master"
20+
21+
gem 'coffee-rails', '~> 4.0.0'
22+
gem 'compass-rails'
23+
gem 'rack-cors', require: 'rack/cors'
24+
gem 'sass-rails', '~> 4.0.0'
25+
gem 'smusher', require: false
26+
gem 'uglifier', '>= 1.3.0'
27+
28+
# Authentication
29+
gem 'cancan'
30+
gem 'devise'
31+
32+
# Views
33+
gem 'kaminari'
34+
gem 'simple_form'
35+
36+
# Attachments
37+
gem 'carrierwave'
38+
gem 'carrierwave_backgrounder'
39+
gem 'fog', '>= 1.3.1'
40+
gem 'mini_magick'
41+
42+
# Background
43+
gem 'sidekiq'
44+
gem 'sinatra' # for sidekiq ui
45+
46+
# Use jQuery as the JavaScript library
47+
gem 'jquery-rails'
48+
49+
# Monitoring/System
50+
gem 'figleaf'
51+
52+
# Tracking
53+
gem 'mixpanel'
54+
55+
# Models
56+
gem 'email_validator'
57+
58+
group :development, :test do
59+
gem 'factory_girl_rails', '~> 4.0'
60+
gem 'launchy'
61+
gem 'rspec-rails'
62+
gem 'shoulda-matchers'
63+
gem 'steak'
64+
gem 'timecop'
65+
66+
gem 'pry'
67+
gem 'pry-byebug'
68+
gem 'pry-rails'
69+
gem 'pry-remote'
70+
end
71+
72+
group :development do
73+
# gem 'rack-livereload'
74+
gem 'foreman'
75+
gem 'guard-livereload'
76+
gem 'rename' # renames your app you can remove after use
77+
end
78+
79+
gem 'whenever', require: false

0 commit comments

Comments
 (0)