-
Notifications
You must be signed in to change notification settings - Fork 177
/
Gemfile
149 lines (126 loc) · 3.98 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# frozen_string_literal: true
source "https://rubygems.org"
gem "dotenv-rails"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1.0"
gem "pg"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# Locking sass-rails for the time being to avoid having to upgrade sprockets from 3->4
gem "sass-rails", "~> 5.0"
# Don't upgrade to Bootstrap 3. It's already responsive, for example, so
# there's a bunch of things we need to do for the upgrade
gem "bootstrap-sass", "~> 2.0"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# IMPORTANT NOTE - as a short term workaround we have installed nodejs on the cuttlefish server
# to be the js runtime. This is because we're still using capistrano 2 which is now not working
# well with the newer bundler version which means that it can't find therubyracer. Ugh
# TODO: Upgrade capistrano 2 -> 3
gem "therubyracer", platforms: :ruby
# Problem with compiling assets in production otherwise
gem "less-rails", "4.0.0"
gem "uglifier"
end
gem "jquery-rails"
gem "jbuilder"
gem "eventmachine"
# We're using a very old version of redis currently which forces us stay at version 5 of sidekiq
# TODO: Update redis
gem "sidekiq", "~> 5.1"
gem "sinatra", require: nil
gem "batch-loader"
gem "coderay"
gem "devise"
gem "devise_invitable"
gem "dkim"
gem "dnsbl-client"
gem "factory_bot_rails"
gem "file-tail"
gem "foreman"
gem "formtastic"
# Use pull request that has needed Rails 4 improvements https://github.com/pkurek/flatui-rails/pull/25
gem "flatui-rails", git: "https://github.com/iffyuva/flatui-rails.git",
ref: "3d3c423"
gem "fog-aws"
gem "font-awesome-rails"
gem "friendly_id"
gem "google-analytics-rails"
# Looks like it's a bit of a pain to upgrade graphql. So just locking
# the version for the time being
# TODO: Upgrade to at least 1.11.7 so we can upgrade ruby to 3.0
gem "graphql", "~> 1.12.0"
# And the same for graphql-client though I'm guessing that should be easier to upgrade than graphql
gem "graphql-client", "~> 0.16.0"
gem "graphql-guard"
gem "haml-rails"
gem "honeybadger"
gem "syslog_protocol"
gem "will_paginate"
# Need commit c9331088146e456a69bd6e94298c80d09be3ee74
gem "formtastic-bootstrap",
git: "https://github.com/mjbellantoni/formtastic-bootstrap.git",
ref: "f86eaef93bea0a06879b3977d7554864964a623f"
gem "minitar"
gem "newrelic_rpm"
gem "nokogiri"
gem "premailer"
gem "pundit"
gem "user_agent_parser"
gem "virtus"
# For doing the webhooks to external sites
gem "rest-client"
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'
# We want to be able to use rack-mini-profiler in production
gem "rack-mini-profiler"
# For authorization with json web tokens
gem "jwt"
# For generating ssl certificates for custom tracking domains
gem "acme-client"
group :development do
gem "capistrano", "~> 2"
gem "faker"
gem "graphiql-rails"
gem "rubocop", require: false
gem "rubocop-graphql", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rvm-capistrano", ">= 1.5.6", require: false
gem "spring"
gem "spring-commands-rspec"
# Webrick gives us annoying warnings "could not determine content-length
# of response body"
gem "thin"
gem "guard"
gem "guard-rspec"
gem "listen"
gem "rb-fchange", require: false
gem "rb-fsevent", require: false
gem "rb-inotify", require: false
gem "ruby_gntp"
gem "terminal-notifier"
gem "terminal-notifier-guard"
end
group :test do
gem "climate_control"
gem "coveralls", require: false
gem "database_cleaner"
gem "rails-controller-testing"
gem "vcr"
gem "webmock"
end
group :development, :test do
gem "capybara"
gem "rspec-activemodel-mocks"
gem "rspec-rails"
gem "selenium-webdriver"
# For resizing screenshots
gem "rmagick"
end