14873: Removes activerecord-deprecated_finders gem dependency.
[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', '~> 4.2'
8 gem 'responders', '~> 2.0'
9
10 group :test, :development do
11   gem 'factory_bot_rails'
12   gem 'database_cleaner'
13   gem 'ruby-prof'
14   # Note: "require: false" here tells bunder not to automatically
15   # 'require' the packages during application startup. Installation is
16   # still mandatory.
17   gem 'test-unit', '~> 3.0', require: false
18   gem 'simplecov', '~> 0.7.1', require: false
19   gem 'simplecov-rcov', require: false
20   gem 'mocha', require: false
21 end
22
23 # We need this dependency because of crunchv1
24 gem 'arvados-cli'
25
26 # pg is the only supported database driver.
27 # Note: Rails 4.2 is not compatible with pg 1.0
28 #       (See: https://github.com/rails/rails/pull/31671)
29 gem 'pg', '~> 0.18'
30
31 gem 'multi_json'
32 gem 'oj'
33
34 # for building assets
35 gem 'sass-rails',   '~> 4.0'
36 gem 'coffee-rails', '~> 4.0'
37 gem 'therubyracer'
38 gem 'uglifier', '~> 2.0'
39
40 gem 'jquery-rails'
41
42 gem 'rvm-capistrano', :group => :test
43
44 gem 'acts_as_api'
45
46 gem 'passenger'
47
48 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
49 gem 'omniauth', '~> 1.4.0'
50 gem 'omniauth-oauth2', '~> 1.1'
51
52 gem 'andand'
53
54 gem 'test_after_commit', :group => :test
55
56 gem 'trollop'
57 gem 'faye-websocket'
58
59 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
60
61 gem 'arvados', '>= 1.3.1.20190301212059'
62 gem 'httpclient'
63
64 gem 'sshkey'
65 gem 'safe_yaml'
66 gem 'lograge'
67 gem 'logstash-event'
68
69 gem 'rails-observers'
70
71 # Install any plugin gems
72 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
73     eval(IO.read(f), binding)
74 end