-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
37 lines (29 loc) · 999 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
eval_gemfile Pathname(File.dirname(File.absolute_path(__FILE__))).join('datalayer', 'Gemfile')
# Webserver
gem 'puma'
gem 'puma_worker_killer'
# API
gem 'responders'
# FRONTEND
gem 'bootstrap-sass', '= 3.3.7'
gem 'haml-rails', '~> 2.0'
gem 'sass', '= 3.4.22'
gem 'sass-rails', '~> 5.0'
gem 'kramdown'
gem 'jquery-rails'
# rest
gem 'pundit'
gem 'cider_ci-open_session', '>= 1.0.0', '< 2.0.0'
gem 'kaminari'
gem 'sys-filesystem', '>= 1.4.3', require: false
####################################################################
# TEST or DEVELOPMENT only
#####################################################################
# gem 'better_errors', group: [:development]
gem 'binding_of_caller', group: [:development]
gem 'capybara', '~> 3.8', group: [:test]
gem 'ffi', '>= 1.15.5', group: [:test, :development]
gem 'rest-client', group: [:test, :development, :personas]
gem 'ruby-prof', group: [:development]
gem 'rails-controller-testing', group: :test
gem 'selenium-webdriver', group: [:test]