-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (38 loc) · 1.4 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'get_process_mem'
gem 'haml-rails'
gem 'http_accept_language'
gem 'jbuilder'
gem 'prometheus-client'
gem 'puma'
gem 'sentry-rails'
# TODO: Add this to the epimorphics package registry as a gem
gem 'qonsole-rails', git: 'https://github.com/epimorphics/qonsole-rails'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'rubocop'
gem 'rubocop-rails'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
end
source 'https://rubygems.pkg.github.com/epimorphics' do
gem 'json_rails_logger'
gem 'lr_common_styles'
end
# 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 'qonsole-rails', path: '~/Epimorphics/clients/land-registry/projects/qonsole-rails'
# gem 'json_rails_logger', path: '~/Epimorphics/shared/json-rails-logger'
# gem 'lr_common_styles', path: '~/Epimorphics/clients/land-registry/projects/lr_common_styles'