1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 source 'https://rubygems.org'
7 gem 'rails', '~> 4.2.0'
8 gem 'arvados', '>= 0.1.20150511150219'
10 gem 'activerecord-nulldb-adapter'
15 gem 'responders', '~> 2.0'
17 # Note: keeping this out of the "group :assets" section "may" allow us
18 # to use Coffescript for UJS responses. It also prevents a
19 # warning/problem when running tests: "WARN: tilt autoloading
20 # 'coffee_script' in a non thread-safe way; explicit require
21 # 'coffee_script' suggested."
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/sstephenson/execjs#readme for more supported runtimes
31 gem 'therubyracer', :platforms => :ruby
36 gem 'ruby-debug-passenger'
37 gem 'rack-mini-profiler', require: false
38 gem 'flamegraph', require: false
39 #gem 'web-console', '~> 2.0'
42 group :test, :diagnostics, :performance do
43 gem 'minitest', '~> 5.10.3'
44 # Selenium-webdriver 3.x is producing problems like the one described here:
45 # https://stackoverflow.com/questions/41310586/ruby-selenium-webdriver-unable-to-find-mozilla-geckodriver
46 gem 'selenium-webdriver', '~> 2.53.1'
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
65 gem 'bootstrap-sass', '~> 3.1.0'
66 gem 'bootstrap-x-editable-rails'
67 gem 'bootstrap-tab-history-rails'
69 gem 'angularjs-rails', '~> 1.3.8'
76 # To use ActiveModel has_secure_password
77 # gem 'bcrypt-ruby', '~> 3.0.0'
79 # To use Jbuilder templates for JSON
82 # Use unicorn as the app server
85 # Deploy with Capistrano
91 gem 'passenger', :group => :production
96 gem 'httpclient', '~> 2.5'
98 # This fork has Rails 4 compatible routes
99 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
101 gem "deep_merge", :require => 'deep_merge/rails_compat'