Merge branch '18874-merge-wb2'
[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 # i18n 1.14.1 seems to be incompatible with rails 5
11 gem 'i18n', '~> 0.9.5'
12
13 gem 'activerecord-nulldb-adapter', git: 'https://github.com/arvados/nulldb'
14 gem 'multi_json'
15 gem 'oj'
16 gem 'sass'
17 gem 'mime-types'
18 gem 'responders', '~> 2.0'
19
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'
23
24 # Gems used only for assets and not required
25 # in production environments by default.
26 group :assets do
27   gem 'sassc-rails'
28   gem 'uglifier', '~> 2.0'
29
30   # See https://github.com/rails/execjs#readme for more supported runtimes
31 end
32
33 group :development, :test, :performance do
34   gem 'byebug'
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'
38 end
39
40 group :development do
41   gem 'ruby-debug-passenger'
42   gem 'rack-mini-profiler', require: false
43   gem 'flamegraph', require: false
44   #gem 'web-console', '~> 2.0'
45 end
46
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'
53 end
54
55 group :test, :performance do
56   gem 'rails-perftest'
57   gem 'ruby-prof'
58   gem 'rvm-capistrano'
59   # Note: "require: false" here tells bunder not to automatically
60   # 'require' the packages during application startup. Installation is
61   # still mandatory.
62   gem 'simplecov', '~> 0.7', require: false
63   gem 'simplecov-rcov', require: false
64   gem 'mocha', require: false
65   gem 'rails-controller-testing'
66 end
67
68 gem 'jquery-rails'
69 gem 'bootstrap-sass', '~> 3.4.1'
70 gem 'bootstrap-x-editable-rails'
71 gem 'bootstrap-tab-history-rails'
72
73 gem 'angularjs-rails', '~> 1.3.8'
74
75 gem 'sshkey'
76
77 # To use ActiveModel has_secure_password
78 # gem 'bcrypt-ruby', '~> 3.0.0'
79
80 # To use Jbuilder templates for JSON
81 # gem 'jbuilder'
82
83 # Use unicorn as the app server
84 # gem 'unicorn'
85
86 # Deploy with Capistrano
87 # gem 'capistrano'
88
89 gem 'passenger', :group => :production
90 gem 'andand'
91 gem 'RedCloth'
92
93 gem 'piwik_analytics'
94 gem 'httpclient', '~> 2.5'
95
96 # This fork has Rails 4 compatible routes
97 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
98
99 gem "deep_merge", :require => 'deep_merge/rails_compat'
100
101 gem 'morrisjs-rails'
102 gem 'raphael-rails'
103
104 gem 'lograge'
105 gem 'logstash-event'
106
107 gem 'safe_yaml'
108
109 gem 'npm-rails'