3550: Fix race conditions: avoid setting running/success/finished_at
[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   # Note: "require: false" here tells bunder not to automatically
11   # 'require' the packages during application startup. Installation is
12   # still mandatory.
13   gem 'simplecov', '~> 0.7.1', require: false
14   gem 'simplecov-rcov', require: false
15 end
16
17 # This might not be needed in :test and :development, but we load it
18 # anyway to make sure it always gets in Gemfile.lock and to help
19 # reveal install problems sooner rather than later.
20 gem 'pg'
21
22 # Start using multi_json once we are on Rails 3.2;
23 # Rails 3.1 has a dependency on multi_json < 1.3.0 but we need version 1.3.4 to
24 # fix bug https://github.com/collectiveidea/json_spec/issues/27
25 gem 'multi_json'
26 gem 'oj'
27
28 # Gems used only for assets and not required
29 # in production environments by default.
30 group :assets do
31   gem 'sass-rails',   '>= 3.2.0'
32   gem 'coffee-rails', '~> 3.2.0'
33
34   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
35   gem 'therubyracer'
36
37   gem 'uglifier', '>= 1.0.3'
38 end
39
40 gem 'jquery-rails'
41
42 # To use ActiveModel has_secure_password
43 # gem 'bcrypt-ruby', '~> 3.0.0'
44
45 # Use unicorn as the web server
46 # gem 'unicorn'
47
48 # Deploy with Capistrano
49 # gem 'capistrano'
50
51 # To use debugger
52 # gem 'ruby-debug'
53
54 gem 'rvm-capistrano', :group => :test
55
56 gem 'acts_as_api'
57
58 gem 'passenger', :group => :production
59
60 gem 'omniauth', '1.1.1'
61 gem 'omniauth-oauth2', '1.1.1'
62
63 gem 'andand'
64
65 gem 'test_after_commit', :group => :test
66
67 gem 'google-api-client', '~> 0.6.3'
68 gem 'trollop'
69 gem 'faye-websocket'
70 gem 'database_cleaner'
71
72 gem 'themes_for_rails'
73
74 gem 'arvados', '>= 0.1.20140910123800'
75 gem 'arvados-cli', '>= 0.1.20140905165259'
76
77 # pg_power lets us use partial indexes in schema.rb in Rails 3
78 gem 'pg_power'
79
80 gem 'puma'
81 gem 'sshkey'