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.dev20230818173219'
10 gem 'activerecord-nulldb-adapter', git: 'https://github.com/arvados/nulldb'
15 gem 'responders', '~> 2.0'
17 # Pin sprockets to < 4.0 to avoid issues when upgrading rails to 5.2
18 # See: https://github.com/rails/sprockets-rails/issues/443
19 gem 'sprockets', '~> 3.0'
21 # Gems used only for assets and not required
22 # in production environments by default.
25 gem 'uglifier', '~> 2.0'
27 # See https://github.com/rails/execjs#readme for more supported runtimes
30 group :development, :test, :performance do
32 # Pinning launchy because 2.5 requires ruby >= 2.4, which arvbox currently
33 # doesn't have because of SSO.
34 gem 'launchy', '~> 2.4.0'
38 gem 'ruby-debug-passenger'
39 gem 'rack-mini-profiler', require: false
40 gem 'flamegraph', require: false
41 #gem 'web-console', '~> 2.0'
44 group :test, :diagnostics, :performance do
45 gem 'minitest', '~> 5.10.3'
46 gem 'selenium-webdriver', '~> 3'
47 gem 'capybara', '~> 2.5.0'
48 gem 'poltergeist', '~> 1.5.1'
49 gem 'headless', '~> 1.0.2'
52 group :test, :performance do
56 # Note: "require: false" here tells bunder not to automatically
57 # 'require' the packages during application startup. Installation is
59 gem 'simplecov', '~> 0.7', require: false
60 gem 'simplecov-rcov', require: false
61 gem 'mocha', require: false
62 gem 'rails-controller-testing'
66 gem 'bootstrap-sass', '~> 3.4.1'
67 gem 'bootstrap-x-editable-rails'
68 gem 'bootstrap-tab-history-rails'
70 gem 'angularjs-rails', '~> 1.3.8'
74 # To use ActiveModel has_secure_password
75 # gem 'bcrypt-ruby', '~> 3.0.0'
77 # To use Jbuilder templates for JSON
80 # Use unicorn as the app server
83 # Deploy with Capistrano
86 gem 'passenger', :group => :production
91 gem 'httpclient', '~> 2.5'
93 # This fork has Rails 4 compatible routes
94 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
96 gem "deep_merge", :require => 'deep_merge/rails_compat'