-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
63 lines (53 loc) · 1.22 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
source 'https://rubygems.org'
ruby '2.5.1'
gem "rails"
gem 'pg', '~> 0.20'
gem 'bcrypt', require: 'bcrypt'
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'devise-token_authenticatable'
gem 'cancancan'
gem 'backbone-rails'
gem 'jquery-rails'
gem 'i18n-js', '~> 3.0.0.rc13'
gem 'carrierwave'
gem 'mini_magick'
gem 'fog-aws'
gem 'delayed_job_active_record'
gem 'simple-navigation'
gem 'puma'
gem 'exception_notification'
gem 'rails-timeago'
gem 'jbuilder'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'eco'
gem 'recipient_interceptor'
gem 'koala'
gem 'httparty'
gem "rack-timeout", require:"rack/timeout/base"
gem 'redcarpet'
gem 'polylines'
group :development, :test do
gem 'dotenv-rails', :require => 'dotenv/rails-now' # make sure this loads early
end
group :development do
gem 'brakeman', :require => false
end
group :development, :test do
gem 'rspec-rails'
gem 'figaro'
end
group :test do
gem 'factory_bot_rails'
gem 'capybara'
gem 'database_cleaner'
end
# place last to allow other stuff to be instrumented
group :production do
# origin repo in unmaintained, this fork fixes a problem with rails 5
gem 'workless', git: "https://github.com/vfonic/workless.git", ref: '9c66a42'
gem 'newrelic_rpm'
end