forked from oVirt/ovirt-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (40 loc) · 1.21 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
47
source "https://rubygems.org"
ruby RUBY_VERSION
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", '~> 3'
group :jekyll_plugins do
gem "jekyll-sass-converter"
gem "kramdown"
gem "kramdown-parser-gfm"
gem "liquid"
gem "jemoji"
gem "jekyll-redirect-from"
gem "jekyll-sitemap"
gem "jekyll-paginate"
gem "jekyll-coffeescript"
gem "jekyll-seo-tag"
# until our PR is accepted, see https://github.com/samvincent/jekyll-haml/pull/35
gem 'jekyll-haml', :git => 'https://github.com/OSAS/jekyll-haml.git', :branch => 'haml_jekyll_context'
gem "listen"
gem "bootstrap-sass"
gem "jekyll-font-awesome-sass"
gem "jekyll-favicon"
gem 'jekyll-analytics'
gem 'jekyll-asciidoc'
end
# for syntax highlighting
gem 'coderay', '~> 1.1', '>= 1.1.2'
# for events
gem 'icalendar', '~> 1.5'
gem 'chronic'
# for dot access to Hash members in HAML pages
gem 'hash_dot', '~> 2.4.2'
# for checking broken links
gem 'html-proofer'