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