Merge branch '10538-trash-delete' closes #10538
[arvados.git] / services / api / Gemfile
1 source 'https://rubygems.org'
2
3 gem 'rails', '~> 3.2'
4
5 # Bundle edge Rails instead:
6 # gem 'rails',     :git => 'git://github.com/rails/rails.git'
7
8 group :test, :development do
9   gem 'factory_girl_rails'
10   gem 'database_cleaner'
11   gem 'ruby-prof'
12   # Note: "require: false" here tells bunder not to automatically
13   # 'require' the packages during application startup. Installation is
14   # still mandatory.
15   gem 'test-unit', '~> 3.0', require: false
16   gem 'simplecov', '~> 0.7.1', require: false
17   gem 'simplecov-rcov', require: false
18   gem 'mocha', require: false
19 end
20
21 # pg is the only supported database driver.
22 gem 'pg'
23
24 # Start using multi_json once we are on Rails 3.2;
25 # Rails 3.1 has a dependency on multi_json < 1.3.0 but we need version 1.3.4 to
26 # fix bug https://github.com/collectiveidea/json_spec/issues/27
27 gem 'multi_json'
28 gem 'oj'
29
30 # Gems used only for assets and not required
31 # in production environments by default.
32 group :assets do
33   gem 'sass-rails',   '~> 3.2'
34   gem 'coffee-rails', '~> 3.2'
35
36   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
37   gem 'therubyracer'
38
39   gem 'uglifier', '~> 2.0'
40 end
41
42 gem 'jquery-rails'
43
44 # To use ActiveModel has_secure_password
45 # gem 'bcrypt-ruby', '~> 3.0.0'
46
47 # Use unicorn as the web server
48 # gem 'unicorn'
49
50 # Deploy with Capistrano
51 # gem 'capistrano'
52
53 # To use debugger
54 # gem 'ruby-debug'
55
56 gem 'rvm-capistrano', :group => :test
57
58 gem 'acts_as_api'
59
60 gem 'passenger'
61
62 gem 'omniauth', '~> 1.1'
63 gem 'omniauth-oauth2', '~> 1.1'
64
65 gem 'andand'
66
67 gem 'test_after_commit', :group => :test
68
69 gem 'trollop'
70 gem 'faye-websocket'
71
72 gem 'themes_for_rails'
73
74 gem 'arvados', '>= 0.1.20150615153458'
75 gem 'arvados-cli', '>= 0.1.20161017193526'
76
77 # pg_power lets us use partial indexes in schema.rb in Rails 3
78 gem 'pg_power'
79
80 gem 'puma', '~> 2.0'
81 gem 'sshkey'
82 gem 'safe_yaml'
83 gem 'lograge'
84 gem 'logstash-event'
85
86 # Install any plugin gems
87 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |gemfile|
88     eval(IO.read(gemfile), binding)
89 end