-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
35 lines (24 loc) · 785 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
# If you do not have OpenSSL installed, update
# the following line to use "http://" instead
source 'https://rubygems.org'
gem "middleman", "~> 4.0.0"
# Linting
gem "middleman-scss-lint", github: "middleman/middleman-scss-lint", branch: "master"
# Browser prefixing
gem 'middleman-autoprefixer'
gem "rake", "10.4.2"
# Live-reloading plugin
gem "middleman-livereload"
# 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]
# Markdwon
gem 'kramdown'
# Linter
gem 'scss_lint', require: false
# Deployment
gem 'middleman-deploy', github: 'middleman-contrib/middleman-deploy', branch: 'master'
group :development do
gem 'byebug'
end