15924: Update github links to arvados org.
[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.0.0'
8 gem 'responders', '~> 2.0'
9
10 group :test, :development do
11   gem 'factory_bot_rails'
12   gem 'database_cleaner'
13
14   # As of now (2019-03-27) There's an open issue about incompatibilities with
15   # newer versions of this gem: https://github.com/rails/rails-perftest/issues/38
16   gem 'ruby-prof', '~> 0.15.0'
17
18   # Note: "require: false" here tells bunder not to automatically
19   # 'require' the packages during application startup. Installation is
20   # still mandatory.
21   gem 'test-unit', '~> 3.0', require: false
22   gem 'simplecov', '~> 0.7.1', require: false
23   gem 'simplecov-rcov', require: false
24   gem 'mocha', require: false
25   gem 'byebug'
26 end
27
28 gem 'pg', '~> 1.0'
29
30 gem 'multi_json'
31 gem 'oj'
32
33 gem 'therubyracer'
34 gem 'uglifier', '~> 2.0'
35
36 gem 'jquery-rails'
37
38 gem 'rvm-capistrano', :group => :test
39
40 gem 'acts_as_api'
41
42 gem 'passenger'
43
44 # Locking to 5.10.3 to workaround issue in 5.11.1 (https://github.com/seattlerb/minitest/issues/730)
45 gem 'minitest', '5.10.3'
46
47 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
48 gem 'omniauth', '~> 1.4.0'
49 gem 'omniauth-oauth2', '~> 1.1'
50
51 gem 'andand'
52
53 gem 'optimist'
54 gem 'faye-websocket'
55
56 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
57
58 # We need arvados-cli because of crunchv1. Note: bundler can't handle
59 # two gems with the same "git" url but different "glob" values, hence
60 # the use of a wildcard here instead of literal paths
61 # (sdk/cli/arvados-cli.gem and sdk/ruby/arvados.gem).
62 gem 'arvados-cli', git: 'https://github.com/arvados/arvados.git', glob: 'sdk/*/*.gemspec'
63 gem 'arvados', git: 'https://github.com/arvados/arvados.git', glob: 'sdk/*/*.gemspec'
64 gem 'httpclient'
65
66 gem 'sshkey'
67 gem 'safe_yaml'
68 gem 'lograge'
69 gem 'logstash-event'
70
71 gem 'rails-observers'
72
73 gem 'rails-perftest'
74 gem 'rails-controller-testing'
75
76 gem 'sass-rails'
77
78 # arvados-google-api-client and googleauth depend on signet, but
79 # signet 0.12 is incompatible with ruby 2.3.
80 gem 'signet', '< 0.12'
81
82 # Install any plugin gems
83 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
84     eval(IO.read(f), binding)
85 end