mirror of
https://github.com/wahyd4/slate.git
synced 2026-08-17 16:56:38 +10:00
26 lines
629 B
Ruby
26 lines
629 B
Ruby
# If you have OpenSSL installed, we recommend updating
|
|
# the following line to use "https"
|
|
source 'http://rubygems.org'
|
|
|
|
gem "middleman", "~>3.1.5"
|
|
|
|
# For syntax highlighting
|
|
gem "middleman-syntax"
|
|
|
|
# Plugin for middleman to generate Github pages
|
|
gem 'middleman-gh-pages'
|
|
|
|
# Live-reloading plugin
|
|
gem "middleman-livereload", "~> 3.1.0"
|
|
|
|
gem 'redcarpet', git: 'https://github.com/vmg/redcarpet.git'
|
|
|
|
gem "github-linguist"
|
|
|
|
# For faster file watcher updates on Windows:
|
|
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
|
|
|
|
# Cross-templating language block fix for Ruby 1.8
|
|
platforms :mri_18 do
|
|
gem "ruby18_source_location"
|
|
end |