-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
93 lines (74 loc) · 2.57 KB
/
Gemfile
File metadata and controls
93 lines (74 loc) · 2.57 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails'
# Use Puma as the app server
gem 'puma'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'execjs'
# gem 'therubyracer', platforms: :ruby
gem 'libv8-node'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
gem 'jquery-rails'
gem 'autoprefixer-rails'
gem 'dartsass-sprockets', '~> 3.2'
gem 'haml-rails'
gem 'rubocop'
gem 'rubocop-rails'
# Faraday v2 requires individual middlewares to be specified
# Resolve open-ended gem versioning warnings by setting explicit version minimums
gem 'faraday', '~> 2.13', '>= 2.13.0'
gem 'faraday-encoding', '~> 0.0', '>= 0.0.6'
gem 'faraday-follow_redirects', '~> 0.3', '>= 0.3.0'
gem 'faraday-retry', '~> 2.0', '>= 2.0'
gem 'font-awesome-rails'
gem 'get_process_mem'
gem 'jquery-ui-rails'
gem 'ostruct'
gem 'prometheus-client'
gem 'puma-metrics'
gem 'yajl-ruby', require: 'yajl'
# Sentry uses stackprof for performance profiling, has to be loaded before Sentry
gem 'stackprof'
gem 'sentry-rails' # rubocop:disable Bundler/OrderedGems
group :doc do
gem 'sdoc', require: false
end
gem 'byebug', groups: %i[development test]
gem 'dotenv', groups: %i[development test]
group :test do
gem 'capybara'
gem 'csv'
gem 'json_expressions'
gem 'minitest-rails', require: false
gem 'minitest-reporters'
gem 'minitest-spec-rails', require: false
gem 'mocha'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'vcr'
gem 'webmock'
end
group :development do
gem 'htmlbeautifier'
gem 'ruby-lsp'
gem 'solargraph'
# Devtools panel for Rails development - loading from the GitHub repo
# (https://github.com/dejan/rails_panel/issues/209#issuecomment-2621877079_)
gem 'meta_request', github: 'dejan/rails_panel', ref: 'meta_request-v0.8.5'
gem 'rb-readline'
gem 'flamegraph'
gem 'memory_profiler'
# TODO: While running the rails app locally for testing you can set gems to your local path
# ! These 'local' paths do not work with a docker image - use the repo instead
# gem 'data_services_api', path: '~/Epimorphics/shared/data_services_api'
# gem 'json_rails_logger', path: '~/Epimorphics/shared/json-rails-logger'
# gem 'lr_common_styles', path: '~/Epimorphics/clients/land-registry/projects/lr_common_styles'
end
# TODO: In production you want to set this to the gem from the epimorphics package repo
source 'https://rubygems.pkg.github.com/epimorphics' do
gem 'data_services_api'
gem 'json_rails_logger'
gem 'lr_common_styles'
end