-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
16 lines (15 loc) · 897 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source 'https://rubygems.org'
gem 'awestruct', '0.5.3' # Framework for creating static HTML sites
gem 'uglifier', '~> 2.0.1' # Ruby wrapper for UglifyJS JavaScript compressor
gem 'cssminify', '~> 1.0.2' # CSS compression using YUI compressor
gem 'less', '~> 2.3.2' # Invoke the Less CSS compiler from Ruby
gem 'therubyracer', '~> 0.11.4', :platforms => :ruby # Call JavaScript code and manipulate JavaScript objects from Ruby and vice versa
gem 'rb-fsevent', '~> 0.9.3' # FSEvents API with Signals catching (without RubyCocoa)
gem 'kramdown', '~> 1.0.1' # Kramdown works on all platforms, rdiscount only on mri
gem 'therubyrhino', '~> 1.73', :platforms => :jruby # JavaScript on JRuby
gem 'htmlcompressor', '~> 0.0.3' # Adds in HTML minification, helps remove the warning on awestruct startup
gem 'RedCloth'
gem 'listen', '0.7.3'
gem 'asciidoctor', '0.1.4'
gem 'tilt', '~> 1.4.0'
gem 'coderay'