-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
98 lines (85 loc) · 3.01 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '7.1.5.1'
gem 'active_model_serializers', '~> 0.10.14' # JSON API
gem 'activerecord-import' # Mass importing of CSV data
gem 'activerecord-session_store' # Switch to AR session storage in case of failure pushing to GIBCT
gem 'base64', '~> 0.2.0' # ruby 3.4.0 warning said to add
gem 'bcrypt', '~> 3.1.20'
gem 'bootsnap', require: false
gem 'cancancan', '~> 1.13', '>= 1.13.1' # Use cancancan for authorization
gem 'config'
gem 'csv', '~> 3.3' # ruby 3.4.0 warning said to add
gem 'devise' # Use devise for authentication
gem 'drb', '~> 2.2', '>= 2.2.1' # ruby 3.4.0 warning said to add
gem 'faraday'
gem 'faraday_middleware'
gem 'figaro'
gem 'font-awesome-rails', '4.7.0.8'
gem 'geocoder', '~> 1.8'
gem 'govdelivery-tms', '2.8.4', require: 'govdelivery/tms/mail/delivery_method'
gem 'jquery-rails'
gem 'jquery-ui-rails', git: 'https://github.com/jquery-ui-rails/jquery-ui-rails', branch: 'master'
gem 'json', '>= 2.3.0'
gem 'mutex_m', '~> 0.2.0' # ruby 3.4.0 warning said to add
gem 'newrelic_rpm'
gem 'nokogiri', '~> 1.16.5'
gem 'oj' # Amazon Linux `json` gem causes conflicts, but `multi_json` will prefer `oj` if installed
gem 'pg' # Use postgresql as the database for Active Record
gem 'puma', '~> 6.4.3'
gem 'rack', '>= 2.2.8.1'
gem 'rack-cors', require: 'rack/cors' # CORS
gem 'rails-html-sanitizer', '>= 1.4.4'
gem 'rainbow'
gem 'rexml', '~> 3.3.9'
gem 'roo', '~> 2.10'
gem 'roo-xls', '~> 1.2'
gem 'ruby-saml'
gem 'rubyzip', '~> 2.3'
gem 'sentry-raven', '~> 3.1.2'
gem 'sitemap_generator'
gem 'sprockets-rails' # Rails 7 upgrade - needed for now.
gem 'strong_migrations'
gem 'terser'
gem 'vets_json_schema', git: 'https://github.com/department-of-veterans-affairs/vets-json-schema', branch: 'master'
gem 'virtus', '~> 2.0.0'
gem 'will_paginate'
group :production do
gem 'sass-rails', '6.0'
end
group :development, :test do
gem 'byebug' # Call 'byebug' anywhere in the code to get a debugger console
gem 'pry-nav'
# Linters
gem 'libv8-node', '21.7.2.0'
gem 'mini_racer'
gem 'rubocop', require: false
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'scss_lint', require: false
# Security scanners
gem 'brakeman'
gem 'bundler-audit'
# Testing tools
gem 'headless', '~> 2.3.1' # requires xvfb - used with Watir below
gem 'json_matchers'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'watir', '~> 7.3'
# Added to remove irb: context errors on rails c (MPH)
gem 'guard-rspec', require: false
gem 'factory_bot_rails', '> 5'
gem 'capybara', '3.40.0'
gem 'database_cleaner'
gem 'faker', '~> 3.3'
gem 'parallel_tests'
gem 'simplecov'
gem 'simplecov-single_file', require: false, group: :test
gem 'vcr', '~> 6.2'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 4.2', platforms: :ruby
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', platforms: :ruby
end