-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (28 loc) · 941 Bytes
/
Gemfile
File metadata and controls
38 lines (28 loc) · 941 Bytes
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]
# Middleman Gems
gem "middleman", "~> 4.1"
gem 'middleman-livereload'
gem 'middleman-autoprefixer'
gem 'middleman-minify-html'
gem 'middleman-syntax'
# For linux folks, need a JS runtime
gem 'therubyracer'
gem 'redcarpet', '~> 3.5'
# Nice Sass style linting in your editor, if you enable it. Stops bad CSS.
# https://github.com/brigade/scss-lint/
group :development do
gem 'scss_lint', require: false
end
# For favicon generation
# https://github.com/follmann/middleman-favicon-maker
gem "middleman-favicon-maker", "~> 4.0"
gem "middleman-blog", "~> 4.0"
gem "builder", "~> 3.0"
gem "nokogiri", "~> 1.13.4"
gem "less"