Merge branch '8784-dir-listings'
[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.0'
8 gem 'responders', '~> 2.0'
9 gem 'protected_attributes'
10
11 group :test, :development do
12   gem 'factory_girl_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 # pg is the only supported database driver.
25 gem 'pg'
26
27 gem 'multi_json'
28 gem 'oj'
29 gem 'oj_mimic_json'
30
31 # for building assets
32 gem 'sass-rails',   '~> 4.0'
33 gem 'coffee-rails', '~> 4.0'
34 gem 'therubyracer'
35 gem 'uglifier', '~> 2.0'
36
37 gem 'jquery-rails'
38
39 gem 'rvm-capistrano', :group => :test
40
41 gem 'acts_as_api'
42
43 gem 'passenger'
44
45 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
46 gem 'omniauth', '~> 1.4.0'
47 gem 'omniauth-oauth2', '~> 1.1'
48
49 gem 'andand'
50
51 gem 'test_after_commit', :group => :test
52
53 gem 'trollop'
54 gem 'faye-websocket'
55
56 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
57
58 gem 'arvados', '>= 0.1.20150615153458'
59 gem 'arvados-cli', '>= 0.1.20161017193526'
60
61 gem 'puma', '~> 2.0'
62 gem 'sshkey'
63 gem 'safe_yaml'
64 gem 'lograge'
65 gem 'logstash-event'
66
67 gem 'rails-observers'
68
69 # Install any plugin gems
70 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
71     eval(IO.read(f), binding)
72 end