This repository has been archived by the owner on Aug 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
96 lines (65 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'https://rubygems.org'
gem "middleman", "~> 3.3.3"
# In order to get SASS 3.3, compass 1.0 is needed
# FIXME: Remove this once 1.0 is final (very, very soon now -- next week?)
gem 'compass', '~> 1.0.0.alpha.21'
# Live-reloading plugin
gem "middleman-livereload"
# Cross-templating language block fix for Ruby 1.8
platforms :mri_18 do
gem "ruby18_source_location"
end
# For faster file watcher updates for people using Windows
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
#####
# General plugins
# Blog plugin
gem "middleman-blog"
#gem "middleman-blog-drafts"
#gem "middleman-blog-authors"
# Thumbnailer
#gem "middleman-thumbnailer", github: "nhemsley/middleman-thumbnailer"
# favicon support (favicon PNG should be 144×144)
gem "middleman-favicon-maker"
# HTML & XML parsing smarts
gem "nokogiri"
# Syntax highlighting
gem "middleman-syntax"
# For feed.xml.builder
gem "builder", "~> 3.0"
# Better JSON lib
gem "oj"
#####
# Bootstrap
# Bootstrap, as SASS
gem "bootstrap-sass"
# There's a bug in with bootstrap-sass + sprockets-sass in 3.3.3
# FIXME: When a fix is released (3.3.4?), remove this block
# See: https://github.com/middleman/middleman/issues/1265
gem 'middleman-sprockets', '3.3.2'
#####
# Formats
# less (css)
gem "therubyracer"
gem "less"
# asciidoctor
gem "asciidoctor"
# mediawiki
gem "wikicloth"
gem "coderay"
gem "stringex"
# Markdown
# pinned to fix issue with https://github.com/gettalong/kramdown/pull/513
# and https://github.com/redhat-openstack/website/pull/1218
gem "kramdown", "~> 1.16.0"
gem 'open-uri-cached'
gem 'font-awesome-middleman'
# RSS/Atom parsing
gem "feedjira"
# Command line parser
gem 'slop', '~> 4'
source 'https://rails-assets.org' do
gem 'rails-assets-jquery'
end