forked from projectatomic/atomic-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
81 lines (55 loc) · 1.35 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
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'
gem "middleman", "~>3.2"
# Live-reloading plugin
gem "middleman-livereload"
# Debugger / REPL alternative to irb
gem 'pry'
gem 'pry-debugger'
gem 'pry-stack_explorer'
# 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"
gem 'middleman-deploy'
# 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 3 version (there's a bug in 3.0.1+, so we're
# locking to 3.0.0 for now
gem "bootstrap-sass", "3.0.0"
#####
# Font Awesome
gem 'font-awesome-middleman'
#####
# Formats
# less (css)
gem "therubyracer"
gem "less"
# asciidoctor
gem "asciidoctor"
# mediawiki
gem "wikicloth"
# Markdown, with GitHub flavoring
gem "redcarpet"
gem 'open-uri-cached'