forked from jbosstools/jbosstools-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
24 lines (22 loc) · 1.24 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
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.rc2' # 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', '~> 1.0'
gem 'asciidoctor', '0.1.4'
gem 'tilt', '~> 1.4.0'
gem 'coderay'
gem 'html_press', '~> 0.8.1'
# 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'