-
Notifications
You must be signed in to change notification settings - Fork 95
/
Gemfile
41 lines (36 loc) · 1.57 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 '2.4.1'
#gem 'awestruct', '0.5.5' # Framework for creating static HTML sites
#gem 'awestruct', :git => 'git://github.com/aslakknutsen/awestruct.git', :branch => 'lazy_gen'
#gem 'awestruct', :git => 'git://github.com/lightguard/awestruct.git', :branch => 'switch_from_rexml_to_oga'
gem 'awestruct', :git => 'https://github.com/awestruct/awestruct.git', :ref => 'b8ad2ea56a38839b44659d47d56ef338e69d8a88'
gem 'rake'
gem 'uglifier', '~> 2.7.2' # 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', '~> 2.3.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'
gem 'asciidoctor', '1.5.8'
gem 'slim'
gem 'less'
#gem 'therubyracer'
gem 'tilt'
gem 'coderay'
gem 'html_press', '~> 0.8.1'
gem 'git' # required to run the '-deploy' option
gem 'coffee-script', '~> 2.2.0'
gem 'org-ruby', '>= 0.8'
gem 'markaby', '>= 0.9'
gem 'therubyracer'
gem 'bootstrap-sass'
gem 'compass'
# 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'
# to allow for proper product version comparison
gem 'version', '1.0.0'
gem "ffi", "~> 1.15"