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