-
Notifications
You must be signed in to change notification settings - Fork 177
/
Gemfile
107 lines (74 loc) · 2.15 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
96
97
98
99
100
101
102
103
104
105
106
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'https://rubygems.org'
source 'https://rails-assets.org'
gem "middleman", "~> 3.3.10"
gem 'compass', '~> 1'
# Live-reloading plugin
gem "middleman-livereload"
# Duck: lock version, later ones require a more recent Ruby
gem "rb-inotify", "~> 0.9.10"
# 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", "~> 1.6.0"
gem 'mini_portile'
# Syntax highlighting
gem "middleman-syntax"
# For feed.xml.builder
gem "builder", "~> 3.0"
# Better JSON lib
gem "oj", "~> 3.3"
# Lock jQuery to 1.x, for better IE support (6 - 8)
# Fixes and features are backported from 2.x to 1.x; only diff is IE support.
# see http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/
gem 'rails-assets-jquery', '~> 1'
# Friendly date library
gem 'chronic'
#####
# Bootstrap
# Bootstrap, as SASS
# Duck: 3.4 uses sassc which requires a more recent Ruby
gem "bootstrap-sass", "~> 3.3.7"
#####
# Formats
# haml
gem "haml", "~> 4.0"
# less (css)
gem "therubyracer"
gem "less"
# asciidoctor
gem "asciidoctor"
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"
# pinned to work on the CentOS 7 builder
gem "hitimes", "~> 1.2.6"
gem 'open-uri-cached'
gem 'font-awesome-middleman'
# RSS/Atom parsing
gem "feedjira"
gem 'rails-assets-bootstrap-sortable'
gem 'rails-assets-momentjs'
# pinned to work on the CentOS 7 builder
gem "rails-assets-fullcalendar", "~> 2.9.1"
gem 'icalendar', '~> 1.5'
gem 'slop', '~> 4'
gem 'launchy'