-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
67 lines (60 loc) · 1.36 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
source 'https://rubygems.org'
ruby '2.6.6'
gem 'activerecord-session_store'
gem 'dotenv-rails'
gem 'haml-rails', '~> 2.0'
gem 'high_voltage'
gem 'jquery-rails'
gem 'pg', '~> 1.3.5'
gem 'pg_search'
gem 'public_activity', '~> 2.0'
gem 'puma', '~> 4.3'
gem 'mail-notify', '~> 1.0.4'
gem 'mimemagic', '~> 0.3.8'
gem 'omniauth-auth0', '~> 2.2'
gem 'omniauth-rails_csrf_protection'
gem 'rails', '~> 6.1.6'
gem 'redis'
gem 'redis-namespace'
gem 'sass-rails', '~> 6.0'
gem 'sidekiq'
gem 'simple_form'
gem 'turbolinks', '~> 5'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'uglifier', '>= 1.3.0'
gem 'sentry-raven'
gem 'newrelic_rpm'
gem 'figaro'
# Support file upload
gem 'fog-aws'
gem 'carrierwave', '~> 2.0'
# Add to termporarily support usability testing
gem 'faker'
gem 'factory_bot_rails'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'pry'
gem 'bullet'
gem 'rubocop'
end
group :development do
gem 'better_errors'
gem 'html2haml'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rails_layout'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :development, :test do
gem 'rspec-rails'
end
group :test do
gem 'database_cleaner'
gem 'launchy'
gem 'shoulda'
gem 'webmock', '~> 3.5'
end