-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
77 lines (59 loc) · 1.27 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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'
gem 'sqlite3'
# 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 'capybara-rails'
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