1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 source 'https://rubygems.org'
7 gem 'rails', '~> 6.0.0'
11 # Pin sprockets to < 4.0 to avoid issues when upgrading rails to 5.2
12 # See: https://github.com/rails/sprockets-rails/issues/443
13 gem 'sprockets', '~> 3.0'
15 group :test, :development do
16 gem 'factory_bot_rails'
18 # As of now (2019-03-27) There's an open issue about incompatibilities with
19 # newer versions of this gem: https://github.com/rails/rails-perftest/issues/38
20 gem 'ruby-prof', '~> 0.15.0'
22 # Note: "require: false" here tells bunder not to automatically
23 # 'require' the packages during application startup. Installation is
25 gem 'test-unit', '~> 3.0', require: false
26 gem 'simplecov', '~> 0.7.1', require: false
27 gem 'simplecov-rcov', require: false
28 gem 'mocha', require: false
44 # Locking to 5.10.3 to workaround issue in 5.11.1 (https://github.com/seattlerb/minitest/issues/730)
45 gem 'minitest', '5.10.3'
51 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
53 gem 'arvados', '~> 2.7.0.rc1'
62 gem 'rails-controller-testing'
64 gem 'mini_portile2', '~> 2.8', '>= 2.8.1'
66 # Install any plugin gems
67 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
68 eval(IO.read(f), binding)