-
Notifications
You must be signed in to change notification settings - Fork 27
/
Gemfile
39 lines (30 loc) · 987 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
38
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 '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
gem 'i18n' # Deal with non Ascii names
gem 'htmlentities' # Escape/unescape HTML entities
gem 'nokogiri' # HTML parser
## 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'
# Debugging
gem 'pry-byebug'
gem 'tracer'