forked from candlepin/candlepin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
31 lines (28 loc) · 932 Bytes
/
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
# Use the OpenShift gem mirror
# See http://openshift.github.io/documentation/oo_cartridge_guide.html#ruby-mirror
source 'https://rubygems.org'
ruby '1.9.3'
# rack-jekyll fails to install under US_ASCII which is what the Jenkins slaves are
# set to.
Encoding.default_external=Encoding::UTF_8
Encoding.default_internal=Encoding::UTF_8
gem 'git', "~> 1.2"
gem 'typogruby', "~> 1.0"
gem 'jekyll', "~> 2.0"
gem 'jekyll-sitemap'
gem 'kramdown', "~> 1.3"
# Until https://github.com/adaoraul/rack-jekyll/pull/22 is accepted
gem 'rack-jekyll', :git => 'https://github.com/awood/rack-jekyll'
gem 'nokogiri', "~> 1.5.2"
gem 'stringex'
gem 'rack'
gem 'rack-rewrite'
gem 'thin'
group :development do
gem 'thor'
gem 'safe_yaml'
gem 'rack-livereload'
gem 'guard-livereload'
# Until https://github.com/imathis/guard-jekyll-plus/issues/25 is accepted
gem 'guard-jekyll-plus', :git => 'https://github.com/awood/guard-jekyll-plus'
end