-
Notifications
You must be signed in to change notification settings - Fork 48
/
Gemfile
37 lines (27 loc) · 845 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
source 'https://rubygems.org'
gem 'bundler', '2.4.10'
# Main site dependencies
gem 'awestruct', '0.6.7'
gem 'sass'
gem 'json'
gem 'haml', '< 6.0' # Haml 6 would require udpating our filter registration code
gem 'logging'
gem 'uglifier' # Ruby wrapper for UglifyJS JavaScript compressor
gem 'cssminify' # CSS compression using YUI compressor
gem 'htmlcompressor' # Adds in HTML minification, helps remove the warning on awestruct startup
gem 'redcarpet' # Markdown processing
gem 'asciidoctor' # Asciidoc renderer
## Non Windows
gem 'mini_racer', :platforms => :ruby
## Windows
gem 'win32-open3-19', :platforms => [:mswin, :mingw]
# Test dependencies
gem 'rspec'
# For previews
gem 'webrick'
# To enable guard and livereload
gem 'guard'
gem 'guard-livereload'
gem 'yajl-ruby'
# Debugger
gem 'pry-byebug'