16470: Pins the sprocket gem to avoid upgrading to 4.0, that causes issues.
[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.1.7'
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 # 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/sstephenson/execjs#readme for more supported runtimes
35   gem 'therubyracer', :platforms => :ruby
36 end
37
38 group :development do
39   gem 'byebug'
40   gem 'ruby-debug-passenger'
41   gem 'rack-mini-profiler', require: false
42   gem 'flamegraph', require: false
43   #gem 'web-console', '~> 2.0'
44 end
45
46 group :test, :diagnostics, :performance do
47   gem 'minitest', '~> 5.10.3'
48   gem 'selenium-webdriver', '~> 3'
49   gem 'capybara', '~> 2.5.0'
50   gem 'poltergeist', '~> 1.5.1'
51   gem 'headless', '~> 1.0.2'
52 end
53
54 group :test, :performance do
55   gem 'byebug'
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 'less'
76 gem 'less-rails'
77
78 # Wiselinks hasn't been updated for many years and it's using deprecated methods
79 # Use our own Wiselinks fork until this PR is accepted:
80 # https://github.com/igor-alexandrov/wiselinks/pull/116
81 # gem 'wiselinks', git: 'https://github.com/arvados/wiselinks.git', branch: 'rails-5.1-compatibility'
82
83 gem 'sshkey'
84
85 # To use ActiveModel has_secure_password
86 # gem 'bcrypt-ruby', '~> 3.0.0'
87
88 # To use Jbuilder templates for JSON
89 # gem 'jbuilder'
90
91 # Use unicorn as the app server
92 # gem 'unicorn'
93
94 # Deploy with Capistrano
95 # gem 'capistrano'
96
97 gem 'passenger', :group => :production
98 gem 'andand'
99 gem 'RedCloth'
100
101 gem 'piwik_analytics'
102 gem 'httpclient', '~> 2.5'
103
104 # This fork has Rails 4 compatible routes
105 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
106
107 gem "deep_merge", :require => 'deep_merge/rails_compat'
108
109 gem 'morrisjs-rails'
110 gem 'raphael-rails'
111
112 gem 'lograge'
113 gem 'logstash-event'
114
115 gem 'safe_yaml'
116
117 gem 'npm-rails'
118
119 # arvados-google-api-client and googleauth (and thus arvados) gems
120 # depend on signet, but signet 0.12 is incompatible with ruby 2.3.
121 gem 'signet', '< 0.12'