41b2fd26b431a802b8c151fec96b2f7911ad014a
[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 do
42   gem 'byebug'
43   gem 'ruby-debug-passenger'
44   gem 'rack-mini-profiler', require: false
45   gem 'flamegraph', require: false
46   #gem 'web-console', '~> 2.0'
47 end
48
49 group :test, :diagnostics, :performance do
50   gem 'minitest', '~> 5.10.3'
51   gem 'selenium-webdriver', '~> 3'
52   gem 'capybara', '~> 2.5.0'
53   gem 'poltergeist', '~> 1.5.1'
54   gem 'headless', '~> 1.0.2'
55 end
56
57 group :test, :performance do
58   gem 'byebug'
59   gem 'rails-perftest'
60   gem 'ruby-prof'
61   gem 'rvm-capistrano'
62   # Note: "require: false" here tells bunder not to automatically
63   # 'require' the packages during application startup. Installation is
64   # still mandatory.
65   gem 'simplecov', '~> 0.7', require: false
66   gem 'simplecov-rcov', require: false
67   gem 'mocha', require: false
68   gem 'rails-controller-testing'
69 end
70
71 gem 'jquery-rails'
72 gem 'bootstrap-sass', '~> 3.4.1'
73 gem 'bootstrap-x-editable-rails'
74 gem 'bootstrap-tab-history-rails'
75
76 gem 'angularjs-rails', '~> 1.3.8'
77
78 gem 'less'
79 gem 'less-rails'
80 gem 'sshkey'
81
82 # To use ActiveModel has_secure_password
83 # gem 'bcrypt-ruby', '~> 3.0.0'
84
85 # To use Jbuilder templates for JSON
86 # gem 'jbuilder'
87
88 # Use unicorn as the app server
89 # gem 'unicorn'
90
91 # Deploy with Capistrano
92 # gem 'capistrano'
93
94 gem 'passenger', :group => :production
95 gem 'andand'
96 gem 'RedCloth'
97
98 gem 'piwik_analytics'
99 gem 'httpclient', '~> 2.5'
100
101 # This fork has Rails 4 compatible routes
102 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
103
104 gem "deep_merge", :require => 'deep_merge/rails_compat'
105
106 gem 'morrisjs-rails'
107 gem 'raphael-rails'
108
109 gem 'lograge'
110 gem 'logstash-event'
111
112 gem 'safe_yaml'
113
114 gem 'npm-rails'
115
116 # arvados-google-api-client and googleauth (and thus arvados) gems
117 # depend on signet, but signet 0.12 is incompatible with ruby 2.3.
118 gem 'signet', '< 0.12'