forked from jbosstools/jbosstools-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
25 lines (23 loc) · 1.05 KB
/
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
source 'https://rubygems.org'
# older ruby versions have problems! Lets be specific. use 'rvm use 1.9.3@sites --create' to use specific ruby version
ruby '1.9.3'
gem 'awestruct', '0.5.4.rc3' # 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 '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 'htmlcompressor', '~> 0.0.3' # Adds in HTML minification, helps remove the warning on awestruct startup
gem 'RedCloth'
gem 'listen', '~> 1.0'
gem 'asciidoctor', '1.5.0.preview.2'
gem 'slim'
gem 'less'
#gem 'therubyracer'
gem 'tilt', '~> 1.4.0'
gem 'coderay'
gem 'html_press', '~> 0.8.1'
gem 'git' # required to run the '-deploy' option
# To enable guard and livereload (is C native thus not available on windows. Commented out for now)
#gem 'guard'
#gem 'guard-livereload'
#gem 'yajl-ruby'