14873: Fixes unit tests.
[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
14   # As of now (2019-03-27) There's an open issue about incompatibilities with
15   # newer versions of this gem: https://github.com/rails/rails-perftest/issues/38
16   gem 'ruby-prof', '~> 0.15.0'
17
18   # Note: "require: false" here tells bunder not to automatically
19   # 'require' the packages during application startup. Installation is
20   # still mandatory.
21   gem 'test-unit', '~> 3.0', require: false
22   gem 'simplecov', '~> 0.7.1', require: false
23   gem 'simplecov-rcov', require: false
24   gem 'mocha', require: false
25   gem 'byebug'
26 end
27
28 # We need this dependency because of crunchv1
29 gem 'arvados-cli'
30
31 gem 'pg', '~> 1.0'
32
33 gem 'multi_json'
34 gem 'oj'
35
36 gem 'therubyracer'
37 gem 'uglifier', '~> 2.0'
38
39 gem 'jquery-rails'
40
41 gem 'rvm-capistrano', :group => :test
42
43 gem 'acts_as_api'
44
45 gem 'passenger'
46
47 # Locking to 5.10.3 to workaround issue in 5.11.1 (https://github.com/seattlerb/minitest/issues/730)
48 gem 'minitest', '5.10.3'
49
50 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
51 gem 'omniauth', '~> 1.4.0'
52 gem 'omniauth-oauth2', '~> 1.1'
53
54 gem 'andand'
55
56 gem 'optimist'
57 gem 'faye-websocket'
58
59 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
60
61 gem 'arvados', '>= 1.3.1.20190301212059'
62 gem 'httpclient'
63
64 gem 'sshkey'
65 gem 'safe_yaml'
66 gem 'lograge'
67 gem 'logstash-event'
68
69 gem 'rails-observers'
70
71 gem 'rails-perftest'
72 gem 'rails-controller-testing'
73
74 # Install any plugin gems
75 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
76     eval(IO.read(f), binding)
77 end