7709: Upgrade to rails4, fix some of the compatibility issues.
[arvados.git] / services / api / Gemfile
1 source 'https://rubygems.org'
2
3 gem 'rails', '~> 4.0'
4 gem 'responders', '~> 2.0'
5 gem 'protected_attributes'
6
7 group :test, :development do
8   gem 'factory_girl_rails'
9   gem 'database_cleaner'
10   gem 'ruby-prof'
11   # Note: "require: false" here tells bunder not to automatically
12   # 'require' the packages during application startup. Installation is
13   # still mandatory.
14   gem 'test-unit', '~> 3.0', require: false
15   gem 'simplecov', '~> 0.7.1', require: false
16   gem 'simplecov-rcov', require: false
17   gem 'mocha', require: false
18 end
19
20 # pg is the only supported database driver.
21 gem 'pg'
22
23 gem 'multi_json'
24 gem 'oj'
25 gem 'oj_mimic_json'
26
27 # for building assets
28 gem 'sass-rails',   '~> 4.0'
29 gem 'coffee-rails', '~> 4.0'
30 gem 'therubyracer'
31 gem 'uglifier', '~> 2.0'
32
33 gem 'jquery-rails'
34
35 gem 'rvm-capistrano', :group => :test
36
37 gem 'acts_as_api'
38
39 gem 'passenger'
40
41 gem 'omniauth', '~> 1.1'
42 gem 'omniauth-oauth2', '~> 1.1'
43
44 gem 'andand'
45
46 gem 'test_after_commit', :group => :test
47
48 gem 'trollop'
49 gem 'faye-websocket'
50
51 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
52
53 gem 'arvados', '>= 0.1.20150615153458'
54 gem 'arvados-cli', '>= 0.1.20161017193526'
55
56 gem 'puma', '~> 2.0'
57 gem 'sshkey'
58 gem 'safe_yaml'
59 gem 'lograge'
60 gem 'logstash-event'
61
62 # Install any plugin gems
63 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
64     eval(IO.read(f), binding)
65 end