1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 source 'https://rubygems.org'
7 gem 'rails', '~> 5.0.0'
8 gem 'responders', '~> 2.0'
10 group :test, :development do
11 gem 'factory_bot_rails'
12 gem 'database_cleaner'
14 # Note: "require: false" here tells bunder not to automatically
15 # 'require' the packages during application startup. Installation is
17 gem 'test-unit', '~> 3.0', require: false
18 gem 'simplecov', '~> 0.7.1', require: false
19 gem 'simplecov-rcov', require: false
20 gem 'mocha', require: false
23 # We need this dependency because of crunchv1
26 # pg is the only supported database driver.
27 # Note: Rails 4.2 is not compatible with pg 1.0
28 # (See: https://github.com/rails/rails/pull/31671)
35 gem 'uglifier', '~> 2.0'
39 gem 'rvm-capistrano', :group => :test
45 # Locking to 5.10.3 to workaround issue in 5.11.1 (https://github.com/seattlerb/minitest/issues/730)
46 gem 'minitest', '5.10.3'
48 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
49 gem 'omniauth', '~> 1.4.0'
50 gem 'omniauth-oauth2', '~> 1.1'
57 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
59 gem 'arvados', '>= 1.3.1.20190301212059'
70 gem 'rails-controller-testing'
72 # Install any plugin gems
73 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
74 eval(IO.read(f), binding)