8784: Fix test for latest firefox.
[arvados.git] / services / api / Gemfile
1 source 'https://rubygems.org'
2
3 gem 'rails', '~> 4.0'
4 gem 'responders', '~> 2.0'
5 gem 'protected_attributes'
6
7 group :test, :development do
8   gem 'factory_girl_rails'
9   gem 'database_cleaner'
10   gem 'ruby-prof'
11   # Note: "require: false" here tells bunder not to automatically
12   # 'require' the packages during application startup. Installation is
13   # still mandatory.
14   gem 'test-unit', '~> 3.0', require: false
15   gem 'simplecov', '~> 0.7.1', require: false
16   gem 'simplecov-rcov', require: false
17   gem 'mocha', require: false
18 end
19
20 # pg is the only supported database driver.
21 gem 'pg'
22
23 gem 'multi_json'
24 gem 'oj'
25 gem 'oj_mimic_json'
26
27 # for building assets
28 gem 'sass-rails',   '~> 4.0'
29 gem 'coffee-rails', '~> 4.0'
30 gem 'therubyracer'
31 gem 'uglifier', '~> 2.0'
32
33 gem 'jquery-rails'
34
35 gem 'rvm-capistrano', :group => :test
36
37 gem 'acts_as_api'
38
39 gem 'passenger'
40
41 # Restricted because omniauth >= 1.5.0 requires Ruby >= 2.1.9:
42 gem 'omniauth', '~> 1.4.0'
43 gem 'omniauth-oauth2', '~> 1.1'
44
45 gem 'andand'
46
47 gem 'test_after_commit', :group => :test
48
49 gem 'trollop'
50 gem 'faye-websocket'
51
52 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
53
54 gem 'arvados', '>= 0.1.20150615153458'
55 gem 'arvados-cli', '>= 0.1.20161017193526'
56
57 gem 'puma', '~> 2.0'
58 gem 'sshkey'
59 gem 'safe_yaml'
60 gem 'lograge'
61 gem 'logstash-event'
62
63 gem 'rails-observers'
64
65 # Install any plugin gems
66 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
67     eval(IO.read(f), binding)
68 end