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