-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (30 loc) · 986 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
39
40
41
42
43
# If you do not have OpenSSL installed, update
# the following line to use 'http://' instead
source 'https://rubygems.org'
gem 'middleman', '>=4.0.0'
gem 'middleman-sprockets', '~> 4.0.0'
# Live-reloading plugin
gem 'middleman-livereload'
# Blog extension for Middleman
gem 'middleman-blog'
gem 'nokogiri'
# Middleman Sitemap Builder
gem 'middleman-search_engine_sitemap'
# # Middleman Breadcrumbs
# gem 'middleman-breadcrumbs'
# Middleman metatags
gem 'middleman-meta-tags'
# Middleman Google Analytics
gem 'middleman-google-analytics'
gem 'jquery-middleman'
# Automatically add vendor prefixes to CSS rules in stylesheets
gem 'middleman-autoprefixer'
# Middleman HTML minifier
gem 'middleman-minify-html'
# For faster file watcher updates on Windows:
gem 'wdm', '~> 0.1.0', platforms: %i[mswin mingw]
# gem 'rb-inotify', git: 'https://github.com/guard/rb-inotify'
# Windows does not come with time zone data
gem 'tzinfo'
gem 'tzinfo-data'
gem 'scss_lint', require: false