16470: Upgrades rails to 5.2
[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 end
26
27 gem 'pg', '~> 1.0'
28
29 gem 'multi_json'
30 gem 'oj'
31
32 gem 'therubyracer'
33 gem 'uglifier', '~> 2.0'
34
35 gem 'jquery-rails'
36
37 gem 'rvm-capistrano', :group => :test
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 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
47 gem 'omniauth', '~> 1.4.0'
48 gem 'omniauth-oauth2', '~> 1.1'
49
50 gem 'andand'
51
52 gem 'optimist'
53
54 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
55
56 # Import arvados gem.  Note: actual git commit is pinned via Gemfile.lock
57 gem 'arvados', git: 'https://github.com/arvados/arvados.git', glob: 'sdk/ruby/arvados.gemspec'
58 gem 'httpclient'
59
60 gem 'sshkey'
61 gem 'safe_yaml'
62 gem 'lograge'
63 gem 'logstash-event'
64
65 gem 'rails-observers'
66
67 gem 'rails-perftest'
68 gem 'rails-controller-testing'
69
70 gem 'sass-rails'
71
72 # arvados-google-api-client and googleauth depend on signet, but
73 # signet 0.12 is incompatible with ruby 2.3.
74 gem 'signet', '< 0.12'
75
76 # Install any plugin gems
77 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
78     eval(IO.read(f), binding)
79 end