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