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.1.5'
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 # Note: keeping this out of the "group :assets" section "may" allow us
22 # to use Coffescript for UJS responses. It also prevents a
23 # warning/problem when running tests: "WARN: tilt autoloading
24 # 'coffee_script' in a non thread-safe way; explicit require
25 # 'coffee_script' suggested."
28 # Gems used only for assets and not required
29 # in production environments by default.
32 gem 'uglifier', '~> 2.0'
34 # See https://github.com/sstephenson/execjs#readme for more supported runtimes
35 gem 'therubyracer', :platforms => :ruby
38 group :development, :test, :performance do
40 # Pinning launchy because 2.5 requires ruby >= 2.4, which arvbox currently
41 # doesn't have because of SSO.
42 gem 'launchy', '~> 2.4.0'
46 gem 'ruby-debug-passenger'
47 gem 'rack-mini-profiler', require: false
48 gem 'flamegraph', require: false
49 #gem 'web-console', '~> 2.0'
52 group :test, :diagnostics, :performance do
53 gem 'minitest', '~> 5.10.3'
54 gem 'selenium-webdriver', '~> 3'
55 gem 'capybara', '~> 2.5.0'
56 gem 'poltergeist', '~> 1.5.1'
57 gem 'headless', '~> 1.0.2'
60 group :test, :performance do
64 # Note: "require: false" here tells bunder not to automatically
65 # 'require' the packages during application startup. Installation is
67 gem 'simplecov', '~> 0.7', require: false
68 gem 'simplecov-rcov', require: false
69 gem 'mocha', require: false
70 gem 'rails-controller-testing'
74 gem 'bootstrap-sass', '~> 3.4.1'
75 gem 'bootstrap-x-editable-rails'
76 gem 'bootstrap-tab-history-rails'
78 gem 'angularjs-rails', '~> 1.3.8'
84 # To use ActiveModel has_secure_password
85 # gem 'bcrypt-ruby', '~> 3.0.0'
87 # To use Jbuilder templates for JSON
90 # Use unicorn as the app server
93 # Deploy with Capistrano
96 gem 'passenger', :group => :production
100 gem 'piwik_analytics'
101 gem 'httpclient', '~> 2.5'
103 # This fork has Rails 4 compatible routes
104 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
106 gem "deep_merge", :require => 'deep_merge/rails_compat'
118 # arvados-google-api-client and googleauth (and thus arvados) gems
119 # depend on signet, but signet 0.12 is incompatible with ruby 2.3.
120 gem 'signet', '< 0.12'