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'
9 gem 'protected_attributes'
11 group :test, :development do
12 gem 'factory_girl_rails'
13 gem 'database_cleaner'
15 # Note: "require: false" here tells bunder not to automatically
16 # 'require' the packages during application startup. Installation is
18 gem 'test-unit', '~> 3.0', require: false
19 gem 'simplecov', '~> 0.7.1', require: false
20 gem 'simplecov-rcov', require: false
21 gem 'mocha', require: false
24 # We need this dependency because of crunchv1
27 # We'll need to update related code prior to Rails 5.
28 # See: https://github.com/rails/activerecord-deprecated_finders
29 gem 'activerecord-deprecated_finders', require: 'active_record/deprecated_finders'
31 # pg is the only supported database driver.
32 # Note: Rails 4.2 is not compatible with pg 1.0
33 # (See: https://github.com/rails/rails/pull/31671)
40 gem 'sass-rails', '~> 4.0'
41 gem 'coffee-rails', '~> 4.0'
43 gem 'uglifier', '~> 2.0'
47 gem 'rvm-capistrano', :group => :test
53 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
54 gem 'omniauth', '~> 1.4.0'
55 gem 'omniauth-oauth2', '~> 1.1'
59 gem 'test_after_commit', :group => :test
64 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
66 gem 'arvados', '>= 0.1.20150615153458'
76 # Install any plugin gems
77 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
78 eval(IO.read(f), binding)