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