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