14988: Allows units & functionals tests to run.
[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.0.0'
8 gem 'arvados', '>= 0.1.20150511150219'
9
10 gem 'activerecord-nulldb-adapter', git: 'https://github.com/curoverse/nulldb'
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 'sassc-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   gem 'selenium-webdriver', '~> 3'
45   gem 'capybara', '~> 2.5.0'
46   gem 'poltergeist', '~> 1.5.1'
47   gem 'headless', '~> 1.0.2'
48 end
49
50 group :test, :performance do
51   gem 'rails-perftest'
52   gem 'ruby-prof'
53   gem 'rvm-capistrano'
54   # Note: "require: false" here tells bunder not to automatically
55   # 'require' the packages during application startup. Installation is
56   # still mandatory.
57   gem 'simplecov', '~> 0.7', require: false
58   gem 'simplecov-rcov', require: false
59   gem 'mocha', require: false
60 end
61
62 gem 'jquery-rails'
63 gem 'bootstrap-sass', '~> 3.1.0'
64 gem 'bootstrap-x-editable-rails'
65 gem 'bootstrap-tab-history-rails'
66
67 gem 'angularjs-rails', '~> 1.3.8'
68
69 gem 'less'
70 gem 'less-rails'
71 gem 'wiselinks'
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 # To use debugger
87 #gem 'byebug'
88
89 gem 'passenger', :group => :production
90 gem 'andand'
91 gem 'RedCloth'
92
93 gem 'piwik_analytics'
94 gem 'httpclient', '~> 2.5'
95
96 # This fork has Rails 4 compatible routes
97 gem 'themes_for_rails', git: 'https://github.com/curoverse/themes_for_rails'
98
99 gem "deep_merge", :require => 'deep_merge/rails_compat'
100
101 gem 'morrisjs-rails'
102 gem 'raphael-rails'
103
104 gem 'lograge'
105 gem 'logstash-event'
106
107 gem 'safe_yaml'
108
109 gem 'npm-rails'