8005cb32119c1b32956cb0fade37df91ad7ed579
[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.1.5'
9
10 gem 'activerecord-nulldb-adapter', git: 'https://github.com/arvados/nulldb'
11 gem 'multi_json'
12 gem 'oj'
13 gem 'sass'
14 gem 'mime-types'
15 gem 'responders', '~> 2.0'
16
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'
20
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."
26 gem 'coffee-rails'
27
28 # Gems used only for assets and not required
29 # in production environments by default.
30 group :assets do
31   gem 'sassc-rails'
32   gem 'uglifier', '~> 2.0'
33
34   # See https://github.com/rails/execjs#readme for more supported runtimes
35 end
36
37 group :development, :test, :performance do
38   gem 'byebug'
39   # Pinning launchy because 2.5 requires ruby >= 2.4, which arvbox currently
40   # doesn't have because of SSO.
41   gem 'launchy', '~> 2.4.0'
42 end
43
44 group :development do
45   gem 'ruby-debug-passenger'
46   gem 'rack-mini-profiler', require: false
47   gem 'flamegraph', require: false
48   #gem 'web-console', '~> 2.0'
49 end
50
51 group :test, :diagnostics, :performance do
52   gem 'minitest', '~> 5.10.3'
53   gem 'selenium-webdriver', '~> 3'
54   gem 'capybara', '~> 2.5.0'
55   gem 'poltergeist', '~> 1.5.1'
56   gem 'headless', '~> 1.0.2'
57 end
58
59 group :test, :performance do
60   gem 'rails-perftest'
61   gem 'ruby-prof'
62   gem 'rvm-capistrano'
63   # Note: "require: false" here tells bunder not to automatically
64   # 'require' the packages during application startup. Installation is
65   # still mandatory.
66   gem 'simplecov', '~> 0.7', require: false
67   gem 'simplecov-rcov', require: false
68   gem 'mocha', require: false
69   gem 'rails-controller-testing'
70 end
71
72 gem 'jquery-rails'
73 gem 'bootstrap-sass', '~> 3.4.1'
74 gem 'bootstrap-x-editable-rails'
75 gem 'bootstrap-tab-history-rails'
76
77 gem 'angularjs-rails', '~> 1.3.8'
78
79 gem 'sshkey'
80
81 # To use ActiveModel has_secure_password
82 # gem 'bcrypt-ruby', '~> 3.0.0'
83
84 # To use Jbuilder templates for JSON
85 # gem 'jbuilder'
86
87 # Use unicorn as the app server
88 # gem 'unicorn'
89
90 # Deploy with Capistrano
91 # gem 'capistrano'
92
93 gem 'passenger', :group => :production
94 gem 'andand'
95 gem 'RedCloth'
96
97 gem 'piwik_analytics'
98 gem 'httpclient', '~> 2.5'
99
100 # This fork has Rails 4 compatible routes
101 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
102
103 gem "deep_merge", :require => 'deep_merge/rails_compat'
104
105 gem 'morrisjs-rails'
106 gem 'raphael-rails'
107
108 gem 'lograge'
109 gem 'logstash-event'
110
111 gem 'safe_yaml'
112
113 gem 'npm-rails'
114
115 # arvados-google-api-client and googleauth (and thus arvados) gems
116 # depend on signet, but signet 0.12 is incompatible with ruby 2.3.
117 gem 'signet', '< 0.12'