Merge branch 'master' into 2257-inequality-conditions
[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 'sqlite3'
10 end
11
12 # This might not be needed in :test and :development, but we load it
13 # anyway to make sure it always gets in Gemfile.lock and to help
14 # reveal install problems sooner rather than later.
15 gem 'pg'
16
17 # Start using multi_json once we are on Rails 3.2;
18 # Rails 3.1 has a dependency on multi_json < 1.3.0 but we need version 1.3.4 to 
19 # fix bug https://github.com/collectiveidea/json_spec/issues/27
20 gem 'multi_json'
21 gem 'oj'
22
23 # Gems used only for assets and not required
24 # in production environments by default.
25 group :assets do
26   gem 'sass-rails',   '>= 3.2.0'
27   gem 'coffee-rails', '~> 3.2.0'
28
29   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
30   gem 'therubyracer'
31
32   gem 'uglifier', '>= 1.0.3'
33 end
34
35 gem 'jquery-rails'
36
37 # To use ActiveModel has_secure_password
38 # gem 'bcrypt-ruby', '~> 3.0.0'
39
40 # Use unicorn as the web server
41 # gem 'unicorn'
42
43 # Deploy with Capistrano
44 # gem 'capistrano'
45
46 # To use debugger
47 # gem 'ruby-debug'
48
49 gem 'rvm-capistrano', :group => :test
50
51 gem 'acts_as_api'
52
53 gem 'passenger', :group => :production
54
55 gem 'omniauth', '1.1.1'
56 gem 'omniauth-oauth2', '1.1.1'
57
58 gem 'andand'
59 gem 'redis'
60
61 gem 'test_after_commit', :group => :test
62
63 gem 'google-api-client', '~> 0.6.3'
64 gem 'trollop'
65
66 gem 'arvados-cli', '>= 0.1.20140311162926'