This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
84 lines (76 loc) · 2.29 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.7.1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 4.2.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 5.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'chart-js-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11.5'
gem 'pg', '1.4.2' # Necessary for talking to our RDS instance
gem 'pundit'
# gem 'figaro'
gem 'devise', '4.8.1'
gem 'devise-security'
gem 'devise-two-factor'
gem 'dotenv-rails'
gem 'aws-sdk-sns'
gem 'devise-authy'
gem 'rake', '13.0.6'
gem 'email_validator'
gem 'phonelib'
# Used to generate PDFs for reports
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
# Generate zip files
gem 'rubyzip'
# Used to create or edit google sheets
gem 'google_drive'
gem 'simple_form', '~> 5.1.0'
gem 'phony_rails'
gem 'inherited_resources', '1.13.1'
gem 'uuidtools'
gem 'kaminari'
gem 'sassc-rails'
gem 'sassc', '2.4.0'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'browser-timezone-rails'
gem 'sprockets', '~> 3.7.2'
gem 'activerecord-nulldb-adapter'
gem 'puma', '4.3.12'
group :demo, :production, :staging do
# Graylog logging gems
gem 'rails_semantic_logger'
gem 'gelf'
gem 'awesome_print'
end
group :development do
gem 'meta_request', '0.7.3'
gem 'better_errors'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.7.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'rb-readline'
end
group :test, :development do
gem 'capybara', '3.37.1'
gem 'shoulda-matchers', '~> 5.1.0'
gem 'coveralls', '0.8.23', require: false
gem 'rails-controller-testing'
end
group :development, :test, :staging, :demo, :production, :integration, :docker_integration do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails', '~> 5.1.2'
gem 'rspec-its'
gem 'rspec-activemodel-mocks'
end