forked from ManageIQ/manageiq.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
110 lines (75 loc) · 2.19 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
107
108
109
110
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'
source 'https://rails-assets.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.19'
# Live-reloading plugin
gem "middleman-livereload"
# Debugger / REPL alternative to irb
gem 'pry'
gem 'middleman-pry'
# 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]
# JavaScript interpreter, used for coffeescript (requiremd by middleman)
gem 'therubyracer'
#####
# General plugins
# Blog plugin
gem "middleman-blog"
#gem "middleman-blog-drafts"
#gem "middleman-blog-authors"
gem 'middleman-deploy'
# Piwik tracker
gem 'middleman-piwik'
# Google Analytics
gem 'middleman-google-analytics'
# 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"
# Random color generation (with seed support)
gem "color-generator"
# 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'
#####
# 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
# asciidoctor
gem "asciidoctor"
# mediawiki
gem "wikicloth"
gem "coderay"
gem "stringex"
# Markdown
gem "kramdown"
gem 'open-uri-cached'
gem 'font-awesome-middleman', '~> 4.1.1'
gem 'chronic'
# Command line parser
gem "slop"
# XDG launcher
gem "launchy"