forked from Considerit/ConsiderIt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
71 lines (59 loc) · 1.95 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
source 'http://rubygems.org'
#############
# CORE
gem 'rails', '~>5.2'
gem 'activerecord-session_store' # Because CookieStore has race conditions w/ concurrent ajax requests
#############
# AUTHENTICATION
gem "bcrypt"
gem 'ruby-saml', '~> 1.11'
#############
# DATABASE & DATABASE MIDDLEWARE
gem "mysql2"
gem 'acts_as_tenant'
gem 'activerecord-import' # bulk imports for performance
# Used for Opinion.import. Remove after eliminating the
# need to create an unpublished opinion per proposal per user
#############
# VIEWS / FORMS / CLIENT
gem "haml"
gem 'kt-paperclip'
#############
# BACKGROUND PROCESSING / EMAIL
gem 'whenever' # https://github.com/javan/whenever
gem 'delayed_job', :git => 'git://github.com/collectiveidea/delayed_job.git'
gem 'delayed_job_active_record', :git => 'git://github.com/collectiveidea/delayed_job_active_record.git'
gem "daemons" # for the daemonize method used in bin/delayed_job
gem 'rubyzip'
#############
# i18n
gem 'message_format'
############
# PURE PERFORMANCE
# Rails JSON encoding is super slow, oj makes it faster
gem 'oj'
gem 'oj_mimic_json' # we need this for Rails 4.1.x
gem 'bootsnap', require: false
# for importing from google sheets
gem 'google-api-client'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'thin'
gem 'ruby-prof', '~> 1.0.0'
gem 'mailcatcher'
# gem 'rack-mini-profiler'
end
group :production do
# gem 'backup' #https://github.com/meskyanichi/backup
gem 'exception_notification'
gem 'aws-sdk-rails'
gem 'aws-sdk-ses'
gem 'aws-sdk-s3'
gem 'dalli' # memcaching: https://github.com/mperham/dalli/
##############
# SEO
gem 'sitemap_generator' # creates sitemaps for you. Defined in config/sitemap.rb
gem 'prerender_rails' # takes html snapshots of pages and serves them to search bots
end