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