-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gemfile
107 lines (88 loc) · 2.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '>= 2.4.10', '< 2.5'
gem 'rails', '~> 4.2'
gem 'json_cve_2020_10663', '~> 1.0' # required until we update json >= 2.3, which we can only do once we upgrade to Rails >= 4.2 because activesupport 4.1.* depends on json ~> 1.7 (i.e < 2.0): https://rubygems.org/gems/activesupport/versions/4.1.16
gem 'devise', '~> 3.4.1'
gem 'psych', '~> 2.0.2' # part of stdlib, need newer version for safe_load
gem 'rubyzip', '1.3.0'
gem 'jquery-rails', '~> 3.1.3'
gem 'jquery-ui-rails', '4.0.5'
gem 'jquery-historyjs', '0.2.3'
gem 'superfish-rails', '~> 1.6.0'
gem 'nokogiri', '~> 1.10.10'
gem 'redcarpet'
gem 'rmagick'
gem 'carrierwave', '1.3.2'
gem 'will_paginate'
gem 'has_scope'
gem 'pundit', '~> 1.1.0'
gem 'recaptcha', :require => 'recaptcha/rails'
gem 'loofah'
gem 'whenever', :require => false # for cron jobs
gem 'squeel'#, '~> 1.1.1' # until version 1.1.2 released
gem 'tilt'
gem 'simple-navigation', '3.11.0'
gem 'simple_form', '3.2.1'
gem 'facebox-rails'
gem 'strong_presenter', '~> 0.2.2'
gem 'render_anywhere'
gem 'pygments.rb', '~> 1.1.0'
gem 'ranked-model', '< 0.4.3' # pinned because 0.4.3-0.4.4 are broken (see https://github.com/brendon/ranked-model/issues/139; we also need the fix in https://github.com/brendon/ranked-model/pull/152); we can't update to 0.4.5 yet because it requires activerecord >= 4.2
gem 'pdf-reader'
gem 'mechanize'
gem 'prawn'
gem 'rqrcode'
gem 'pdfkit'
gem 'responders'
gem 'countries'
gem 'country_select'
gem 'world-flags'
gem 'jquery-final_countdown-rails'
gem 'ruby-duration'
gem 'pg'
gem 'backup'
# Redis and Background Processing
gem 'redis'
gem 'qless', :github => 'Shopify/qless'
gem 'connection_pool'
gem 'sinatra'
# Deploy with Capistrano
# gem 'capistrano'
# Monitoring
gem 'newrelic_rpm'
gem 'simplecov', require: false
gem 'sentry-raven'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'foreman'
gem 'spring'
end
# 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 'rspec-rails', '~> 3.0'
gem 'capybara'
gem 'capybara-email'
gem 'factory_bot_rails'
gem 'byebug'
gem 'standard'
end
# Gems used only for assets and not required
# in production environments by default.
#group :assets do
gem 'sass'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier', '>=1.0.3'
# Provide a JS runtime to execjs without needing to
# have node, bun, or similar installed on the relevant
# server. We should write this out asap, along with the
# rest of the gems in this assets category, as bundling
# a version of libv8 into a rubygem is just security-vuln
# city, but hey, what can you do.
gem 'mini_racer', '~> 0.4.0'
gem 'yui-compressor'
#end