Merge branch '9827-no-docker-caching' closes #9827
[arvados.git] / services / api / Gemfile
1 source 'https://rubygems.org'
2
3 gem 'rails', '~> 3.2.0'
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 'simplecov', '~> 0.7.1', require: false
16   gem 'simplecov-rcov', require: false
17   gem 'mocha', require: false
18 end
19
20 # This might not be needed in :test and :development, but we load it
21 # anyway to make sure it always gets in Gemfile.lock and to help
22 # reveal install problems sooner rather than later.
23 gem 'pg'
24
25 # Start using multi_json once we are on Rails 3.2;
26 # Rails 3.1 has a dependency on multi_json < 1.3.0 but we need version 1.3.4 to
27 # fix bug https://github.com/collectiveidea/json_spec/issues/27
28 gem 'multi_json'
29 gem 'oj'
30
31 # Gems used only for assets and not required
32 # in production environments by default.
33 group :assets do
34   gem 'sass-rails',   '>= 3.2.0'
35   gem 'coffee-rails', '~> 3.2.0'
36
37   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
38   gem 'therubyracer'
39
40   gem 'uglifier', '>= 1.0.3'
41 end
42
43 gem 'jquery-rails'
44
45 # To use ActiveModel has_secure_password
46 # gem 'bcrypt-ruby', '~> 3.0.0'
47
48 # Use unicorn as the web server
49 # gem 'unicorn'
50
51 # Deploy with Capistrano
52 # gem 'capistrano'
53
54 # To use debugger
55 # gem 'ruby-debug'
56
57 gem 'rvm-capistrano', :group => :test
58
59 gem 'acts_as_api'
60
61 gem 'passenger'
62
63 gem 'omniauth', '1.1.1'
64 gem 'omniauth-oauth2', '1.1.1'
65
66 gem 'andand'
67
68 gem 'test_after_commit', :group => :test
69
70 gem 'trollop'
71 gem 'faye-websocket'
72
73 gem 'themes_for_rails'
74
75 gem 'arvados', '>= 0.1.20150615153458'
76 gem 'arvados-cli', '>= 0.1.20151207150126'
77
78 # pg_power lets us use partial indexes in schema.rb in Rails 3
79 gem 'pg_power'
80
81 gem 'puma'
82 gem 'sshkey'
83 gem 'safe_yaml'
84 gem 'lograge'
85 gem 'logstash-event'