-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
76 lines (67 loc) · 1.69 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby '3.4.2'
# Azure key vault secrets to ENV variables
gem 'azure_env_secrets', github: 'hmcts/azure_env_secrets', tag: 'v1.0.1'
gem 'dotenv-rails', groups: %i[development test] # this has to be here because of load order
gem 'rails', '~> 8.0.0'
gem 'bootsnap', require: false
gem 'config'
gem 'date_validator'
gem "dartsass-sprockets", "~> 3.1"
gem 'jquery-rails'
gem 'nokogiri'
gem 'puma'
gem 'rack', '~> 3.1.5'
gem 'redis'
gem 'rest-client'
gem 'sentry-rails'
gem 'slim-rails'
gem 'uglifier'
gem 'virtus'
gem 'govuk_notify_rails'
# To fix ruby 3.3.3 gemsepec file issue with this gem
gem 'net-pop', github: 'ruby/net-pop'
gem 'rexml', '>= 3.3.9'
group :development, :test do
gem "pry-rails"
gem 'letter_opener'
gem 'rubocop', '~> 1.40', require: false
gem 'rubocop-rails'
gem 'rubocop-performance', require: false
gem 'simplecov', '~> 0.21'
gem 'parallel_tests'
gem 'bundler-audit'
end
group :development do
gem 'launchy'
gem 'listen'
gem 'spring'
gem 'web-console'
end
group :test do
gem 'apparition'
gem 'brakeman'
gem 'capybara'
gem 'codeclimate-test-reporter'
gem 'cucumber-rails', require: false
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'regexp_parser'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'rubocop-rspec'
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rspec_rails'
gem 'rubyzip'
gem 'selenium-webdriver', '~> 4.14'
gem 'shoulda-matchers'
gem 'site_prism'
gem "test-prof", "~> 1.1"
gem 'timecop'
gem 'webmock'
end