Merge branch '20984-instance-capacity'
[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', '~> 7.0.0'
8 gem 'responders'
9 gem 'i18n'
10 gem 'sprockets-rails'
11
12 group :test, :development do
13   gem 'factory_bot_rails'
14
15   # As of now (2019-03-27) There's an open issue about incompatibilities with
16   # newer versions of this gem: https://github.com/rails/rails-perftest/issues/38
17   gem 'ruby-prof', '~> 0.15.0'
18
19   # Note: "require: false" here tells bunder not to automatically
20   # 'require' the packages during application startup. Installation is
21   # still mandatory.
22   gem 'test-unit', '~> 3.0', require: false
23   gem 'simplecov', '~> 0.7.1', require: false
24   gem 'simplecov-rcov', require: false
25   gem 'mocha', require: false
26   gem 'byebug'
27   gem 'listen'
28 end
29
30 gem 'pg', '~> 1.0'
31
32 gem 'multi_json'
33 gem 'oj'
34
35 gem 'jquery-rails'
36
37 gem 'acts_as_api'
38
39 gem 'passenger'
40
41 # Locking to 5.10.3 to workaround issue in 5.11.1 (https://github.com/seattlerb/minitest/issues/730)
42 gem 'minitest', '5.10.3'
43
44 gem 'andand'
45
46 gem 'optimist'
47
48 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
49
50 gem 'arvados', '~> 2.7.0.rc1'
51 gem 'httpclient'
52
53 gem 'lograge'
54 gem 'logstash-event'
55
56 gem 'rails-observers'
57
58 gem 'rails-perftest'
59 gem 'rails-controller-testing'
60
61 gem 'mini_portile2', '~> 2.8', '>= 2.8.1'
62
63 # Install any plugin gems
64 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
65     eval(IO.read(f), binding)
66 end