1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 source 'https://rubygems.org'
7 gem 'rails', '~> 5.2.0'
8 gem 'arvados', '~> 2.7.0.rc1'
10 # i18n 1.14.1 seems to be incompatible with rails 5
11 gem 'i18n', '~> 0.9.5'
13 gem 'activerecord-nulldb-adapter', git: 'https://github.com/arvados/nulldb'
18 gem 'responders', '~> 2.0'
20 # Pin sprockets to < 4.0 to avoid issues when upgrading rails to 5.2
21 # See: https://github.com/rails/sprockets-rails/issues/443
22 gem 'sprockets', '~> 3.0'
24 # Gems used only for assets and not required
25 # in production environments by default.
28 gem 'uglifier', '~> 2.0'
30 # See https://github.com/rails/execjs#readme for more supported runtimes
33 group :development, :test, :performance do
35 # Pinning launchy because 2.5 requires ruby >= 2.4, which arvbox currently
36 # doesn't have because of SSO.
37 gem 'launchy', '~> 2.4.0'
41 gem 'ruby-debug-passenger'
42 gem 'rack-mini-profiler', require: false
43 gem 'flamegraph', require: false
44 #gem 'web-console', '~> 2.0'
47 group :test, :diagnostics, :performance do
48 gem 'minitest', '~> 5.10.3'
49 gem 'selenium-webdriver', '~> 3'
50 gem 'capybara', '~> 2.5.0'
51 gem 'poltergeist', '~> 1.5.1'
52 gem 'headless', '~> 1.0.2'
55 group :test, :performance do
59 # Note: "require: false" here tells bunder not to automatically
60 # 'require' the packages during application startup. Installation is
62 gem 'simplecov', '~> 0.7', require: false
63 gem 'simplecov-rcov', require: false
64 gem 'mocha', require: false
65 gem 'rails-controller-testing'
69 gem 'bootstrap-sass', '~> 3.4.1'
70 gem 'bootstrap-x-editable-rails'
71 gem 'bootstrap-tab-history-rails'
73 gem 'angularjs-rails', '~> 1.3.8'
77 # To use ActiveModel has_secure_password
78 # gem 'bcrypt-ruby', '~> 3.0.0'
80 # To use Jbuilder templates for JSON
83 # Use unicorn as the app server
86 # Deploy with Capistrano
89 gem 'passenger', :group => :production
94 gem 'httpclient', '~> 2.5'
96 # This fork has Rails 4 compatible routes
97 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
99 gem "deep_merge", :require => 'deep_merge/rails_compat'