Merge branch 'master' into 13804-no-shutdown-wanted-nodes
[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', '~> 4.2.0'
8 gem 'arvados', '>= 0.1.20150511150219'
9
10 gem 'activerecord-nulldb-adapter'
11 gem 'multi_json'
12 gem 'oj'
13 gem 'sass'
14 gem 'mime-types'
15 gem 'responders', '~> 2.0'
16
17 # Note: keeping this out of the "group :assets" section "may" allow us
18 # to use Coffescript for UJS responses. It also prevents a
19 # warning/problem when running tests: "WARN: tilt autoloading
20 # 'coffee_script' in a non thread-safe way; explicit require
21 # 'coffee_script' suggested."
22 gem 'coffee-rails'
23
24 # Gems used only for assets and not required
25 # in production environments by default.
26 group :assets do
27   gem 'sass-rails'
28   gem 'uglifier', '~> 2.0'
29
30   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
31   gem 'therubyracer', :platforms => :ruby
32 end
33
34 group :development do
35   gem 'byebug'
36   gem 'ruby-debug-passenger'
37   gem 'rack-mini-profiler', require: false
38   gem 'flamegraph', require: false
39   #gem 'web-console', '~> 2.0'
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', '~> 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 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'