forked from openshift-cs/commons.openshift.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (44 loc) · 2.86 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
42
43
44
45
46
# This file is a Bundler dependency descriptor file. Its purpose is to list all of
# the dependencies you are using to build your site. It is highly recommended you use
# this to keep your dependencies up to date and not cause conflicts with other gems
# already on your system.
#
# If you do not already have Bundler installed on your computer, run:
#
# gem install bundler
#
# To use this dependecy file simply run:
#
# bundle install
#
# We do recommend that you install the gems into another directory however, to ensure
# your awestruct site is pristine and isn't using versions of gems from other programs.
# To do this execute:
#
# bundle install --path .bundle
#
# More information about Bundler and its other commands can be found at http://gembundler.com/.
# To add other dependencies for your awestruct site simply follow the same pattern as you'll
# find below. To make use of dependecies listed here, simply remove the '#' from the start of
# the line to uncomment the dependency. We hope you enjoy using Awestruct!
source 'https://rubygems.org' # This tells Bundler where to look for gems
gem 'awestruct', '~> 0.5.3' # Goes without saying
gem 'webrick', '~> 1.3.1' # The rack webserver to use in dev mode
gem 'nokogiri'
# FIXME
# gem 'rake', '>= 0.9.2' # Needed for the Rakefile to work
gem 'coffee-script', '>= 2.2.0' # If using coffee-script or to remove the warning
# gem 'rb-fsevent', '~> 0.9', :require => false # to remove warning about pulling, Mac OSX
# gem 'rb-inotify', '>= 0.9.0', :require => false # to remove warning about pulling, Linux
# gem 'wdm', :platforms => [:mswin, :mingw], :require => false # to remove warning about pulling, Windows (ruby 1.9+)
# gem 'rb-fchange', '~> 0.0.6', :require => false # to remove warning about pulling, Windows (ruby 1.8.7)
# gem 'therubyracer', '0.10.0', :platforms => :ruby # Javascript runtime on mri (needed for LESS and coffee-script)
# gem 'therubyrhino', '~> 2.0.2', :platforms => :jruby # Javascript runtime on jruby (needed for LESS and coffee-script)
# gem 'less', '>= 2.2.2' # If using LESS instead of sass
# gem 'org-ruby', '>= 0.8' # If using Org-Mode
# gem 'RedCloth', '>= 4.2.9' # If using Textile
gem 'asciidoctor', '>= 0.1.1' # If using AsciiDoc syntax, need 0.1.1 for Header support
# gem 'slim', '>= 1.3.6' # If using slim instead of haml
gem 'kramdown', '>= 0.14.2' # If using Markdown
# gem 'uglifier', '>= 1.3.0' # If using the minify transformer
# gem 'htmlcompressor', '>= 0.0.3' # If using the minify transformer