14873: Rails 5 upgrade. Some tests still failing. (WIP)
[arvados.git] / services / api / Gemfile
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 source 'https://rubygems.org'
6
7 gem 'rails', '~> 5.0.0'
8 gem 'responders', '~> 2.0'
9
10 group :test, :development do
11   gem 'factory_bot_rails'
12   gem 'database_cleaner'
13   gem 'ruby-prof'
14   # Note: "require: false" here tells bunder not to automatically
15   # 'require' the packages during application startup. Installation is
16   # still mandatory.
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
21 end
22
23 # We need this dependency because of crunchv1
24 gem 'arvados-cli'
25
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)
29 gem 'pg', '~> 0.18'
30
31 gem 'multi_json'
32 gem 'oj'
33
34 gem 'therubyracer'
35 gem 'uglifier', '~> 2.0'
36
37 gem 'jquery-rails'
38
39 gem 'rvm-capistrano', :group => :test
40
41 gem 'acts_as_api'
42
43 gem 'passenger'
44
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'
47
48 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
49 gem 'omniauth', '~> 1.4.0'
50 gem 'omniauth-oauth2', '~> 1.1'
51
52 gem 'andand'
53
54 gem 'trollop'
55 gem 'faye-websocket'
56
57 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
58
59 gem 'arvados', '>= 1.3.1.20190301212059'
60 gem 'httpclient'
61
62 gem 'sshkey'
63 gem 'safe_yaml'
64 gem 'lograge'
65 gem 'logstash-event'
66
67 gem 'rails-observers'
68
69 gem 'rails-perftest'
70 gem 'rails-controller-testing'
71
72 # Install any plugin gems
73 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
74     eval(IO.read(f), binding)
75 end