12737: Avoid upgrading to selenium 3.x
[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 # Having a dependency '~> 4.1' make rails 4.2.10 to be installed when it's
8 # supposed to avoid that.
9 gem 'rails', '< 4.2'
10 gem 'arvados', '>= 0.1.20150511150219'
11
12 gem 'activerecord-nulldb-adapter'
13 gem 'multi_json'
14 gem 'oj'
15 gem 'sass'
16 gem 'mime-types'
17
18 # Note: keeping this out of the "group :assets" section "may" allow us
19 # to use Coffescript for UJS responses. It also prevents a
20 # warning/problem when running tests: "WARN: tilt autoloading
21 # 'coffee_script' in a non thread-safe way; explicit require
22 # 'coffee_script' suggested."
23 gem 'coffee-rails'
24
25 # Gems used only for assets and not required
26 # in production environments by default.
27 group :assets do
28   gem 'sass-rails'
29   gem 'uglifier', '~> 2.0'
30
31   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
32   gem 'therubyracer', :platforms => :ruby
33 end
34
35 group :development do
36   gem 'byebug'
37   gem 'ruby-debug-passenger'
38   gem 'rack-mini-profiler', require: false
39   gem 'flamegraph', require: false
40 end
41
42 group :test, :diagnostics, :performance do
43   gem 'minitest', '~> 5.10.3'
44   # Selenium-webdriver 3.x is producing problems like the one described here:
45   # https://stackoverflow.com/questions/41310586/ruby-selenium-webdriver-unable-to-find-mozilla-geckodriver
46   gem 'selenium-webdriver', '~> 2.53.1'
47   gem 'capybara'
48   gem 'poltergeist'
49   gem 'headless'
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 end
63
64 gem 'jquery-rails'
65 gem 'bootstrap-sass', '~> 3.1.0'
66 gem 'bootstrap-x-editable-rails'
67 gem 'bootstrap-tab-history-rails'
68
69 gem 'angularjs-rails', '~> 1.3.8'
70
71 gem 'less'
72 gem 'less-rails'
73 gem 'wiselinks'
74 gem 'sshkey'
75
76 # To use ActiveModel has_secure_password
77 # gem 'bcrypt-ruby', '~> 3.0.0'
78
79 # To use Jbuilder templates for JSON
80 # gem 'jbuilder'
81
82 # Use unicorn as the app server
83 # gem 'unicorn'
84
85 # Deploy with Capistrano
86 # gem 'capistrano'
87
88 # To use debugger
89 #gem 'byebug'
90
91 gem 'passenger', :group => :production
92 gem 'andand'
93 gem 'RedCloth'
94
95 gem 'piwik_analytics'
96 gem 'httpclient', '~> 2.5'
97
98 # This fork has Rails 4 compatible routes
99 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
100
101 gem "deep_merge", :require => 'deep_merge/rails_compat'
102
103 gem 'morrisjs-rails'
104 gem 'raphael-rails'
105
106 gem 'lograge'
107 gem 'logstash-event'
108
109 gem 'safe_yaml'
110
111 gem 'npm-rails'