1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 source 'https://rubygems.org'
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 # We'll need to update related code prior to Rails 5.
27 # See: https://github.com/rails/activerecord-deprecated_finders
28 gem 'activerecord-deprecated_finders', require: 'active_record/deprecated_finders'
30 # pg is the only supported database driver.
31 # Note: Rails 4.2 is not compatible with pg 1.0
32 # (See: https://github.com/rails/rails/pull/31671)
39 gem 'sass-rails', '~> 4.0'
40 gem 'coffee-rails', '~> 4.0'
42 gem 'uglifier', '~> 2.0'
46 gem 'rvm-capistrano', :group => :test
52 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
53 gem 'omniauth', '~> 1.4.0'
54 gem 'omniauth-oauth2', '~> 1.1'
58 gem 'test_after_commit', :group => :test
63 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
65 gem 'arvados', '>= 1.3.1.20190301212059'
75 # Install any plugin gems
76 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
77 eval(IO.read(f), binding)