-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGemfile
102 lines (83 loc) · 2.44 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby ">= 2.4.10", "< 2.5"
gem "rails", "~> 4.2"
gem "devise", "~> 4.0"
gem "psych", "~> 2.0.2" # part of stdlib, need newer version for safe_load
gem "rubyzip", "1.3.0"
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 "strong_presenter", "~> 0.2.2"
gem "render_anywhere"
gem "pygments.rb", "~> 2.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 "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"
gem "test_after_commit", "~> 1.2"
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