20846: Avoid deadlock in unmount-and-replace race.
[arvados.git] / apps / workbench / Gemfile
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 source 'https://rubygems.org'
6
7 gem 'rails', '~> 5.2.0'
8 gem 'arvados', '~> 2.7.0.rc1'
9
10 gem 'i18n'
11 gem 'activerecord-nulldb-adapter', git: 'https://github.com/arvados/nulldb'
12 gem 'multi_json'
13 gem 'oj'
14 gem 'sass'
15 gem 'mime-types'
16 gem 'responders', '~> 2.0'
17
18 # Pin sprockets to < 4.0 to avoid issues when upgrading rails to 5.2
19 # See: https://github.com/rails/sprockets-rails/issues/443
20 gem 'sprockets', '~> 3.0'
21
22 # Gems used only for assets and not required
23 # in production environments by default.
24 group :assets do
25   gem 'sassc-rails'
26   gem 'uglifier', '~> 2.0'
27
28   # See https://github.com/rails/execjs#readme for more supported runtimes
29 end
30
31 group :development, :test, :performance do
32   gem 'byebug'
33   # Pinning launchy because 2.5 requires ruby >= 2.4, which arvbox currently
34   # doesn't have because of SSO.
35   gem 'launchy', '~> 2.4.0'
36 end
37
38 group :development do
39   gem 'ruby-debug-passenger'
40   gem 'rack-mini-profiler', require: false
41   gem 'flamegraph', require: false
42   #gem 'web-console', '~> 2.0'
43 end
44
45 group :test, :diagnostics, :performance do
46   gem 'minitest', '~> 5.10.3'
47   gem 'selenium-webdriver', '~> 3'
48   gem 'capybara', '~> 2.5.0'
49   gem 'poltergeist', '~> 1.5.1'
50   gem 'headless', '~> 1.0.2'
51 end
52
53 group :test, :performance do
54   gem 'rails-perftest'
55   gem 'ruby-prof'
56   gem 'rvm-capistrano'
57   # Note: "require: false" here tells bunder not to automatically
58   # 'require' the packages during application startup. Installation is
59   # still mandatory.
60   gem 'simplecov', '~> 0.7', require: false
61   gem 'simplecov-rcov', require: false
62   gem 'mocha', require: false
63   gem 'rails-controller-testing'
64 end
65
66 gem 'jquery-rails'
67 gem 'bootstrap-sass', '~> 3.4.1'
68 gem 'bootstrap-x-editable-rails'
69 gem 'bootstrap-tab-history-rails'
70
71 gem 'angularjs-rails', '~> 1.3.8'
72
73 gem 'sshkey'
74
75 # To use ActiveModel has_secure_password
76 # gem 'bcrypt-ruby', '~> 3.0.0'
77
78 # To use Jbuilder templates for JSON
79 # gem 'jbuilder'
80
81 # Use unicorn as the app server
82 # gem 'unicorn'
83
84 # Deploy with Capistrano
85 # gem 'capistrano'
86
87 gem 'passenger', :group => :production
88 gem 'andand'
89 gem 'RedCloth'
90
91 gem 'piwik_analytics'
92 gem 'httpclient', '~> 2.5'
93
94 # This fork has Rails 4 compatible routes
95 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
96
97 gem "deep_merge", :require => 'deep_merge/rails_compat'
98
99 gem 'morrisjs-rails'
100 gem 'raphael-rails'
101
102 gem 'lograge'
103 gem 'logstash-event'
104
105 gem 'safe_yaml'
106
107 gem 'npm-rails'