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