-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGemfile
More file actions
56 lines (48 loc) · 1.7 KB
/
Copy pathGemfile
File metadata and controls
56 lines (48 loc) · 1.7 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
source 'https://rubygems.org'
# We hardly use any of the features of Rails, so lets just load what we need
# Initially installed with
# gem 'rails', '~> 6.0'
# And then extracted the dependencies from the Gemfile.lock
# I've removed those we don't need. If reinstating a dependency try and match
# the version to those already included.
# A full list of rails components can be found in the Gemfile:
# https://github.com/rails/rails/blob/master/rails.gemspec
#
# Be aware when adding in new components that they may require an initializer
# or additional configuration options.
# RAILS DEPENDENCIES
gem 'activemodel', '~> 7.2.2.1'
gem 'activerecord', '~> 7.2.2.1'
gem 'activesupport', '~> 7.2.2.1'
gem 'bundler', '>= 1.3.0'
gem 'railties', '~> 7.2.2.1'
# # RAILS DEPENDENCIES
# Remove and test without the following after rails and ruby are updated
gem 'concurrent-ruby', '1.3.6'
gem 'bunny', '>= 2.22.0'
gem 'rbtree', '~> 0.4.5'
# RabbitMQ client
gem 'sanger_warren', github: 'sanger/warren', branch: 'master'
gem 'bootsnap', '~> 1.7', '>= 1.7.3', require: false
gem 'hashie', '~> 5.0'
gem 'mysql2', '~> 0.5.3'
gem 'ostruct' # No longer part of the default gems in Ruby 3.5
gem 'syslog' # No longer part of the default gems in Ruby 3.4
gem 'views_schema', github: 'sanger/views_schema'
group :test, :development do
gem 'factory_bot_rails'
gem 'pry'
gem 'rspec-rails'
gem 'simplecov', require: false
gem 'simplecov_json_formatter', require: false
gem 'simplecov-lcov', require: false
end
group :development do
gem 'guard'
gem 'guard-bundler'
gem 'guard-rspec'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
end