-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·38 lines (27 loc) · 851 Bytes
/
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
# If you do not have OpenSSL installed, change
# the following line to use 'http://'
source 'https://rubygems.org'
# For faster file watcher updates on Windows:
# gem 'wdm', '~> 0.1.0', platforms: [:mswin, :mingw]
# Windows does not come with time zone data
# gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby]
# These are from the default Middleman init. Will I ever need them?
# Middleman Gems
gem 'middleman', '~> 4.1'
gem 'middleman-blog'
# Awesome print is best print
gem 'awesome_print'
# For realtime results
gem 'middleman-livereload'
# Middleman console
gem 'middleman-pry'
# For parsing Markdown
gem 'redcarpet', '~> 3.3', '>= 3.3.3'
# The nokogiri for peering into documents
gem 'nokogiri'
# For Syntax highlighting
gem 'middleman-syntax'
# For feed.xml.builder
gem 'builder', '~> 3.0'
# For uploading to s3
gem 's3_website'