auto include wdm on windows platforms

This commit is contained in:
Thomas Reynolds 2013-07-07 20:57:04 -07:00
parent bd4a6c1eb8
commit 5806f2cbf5
2 changed files with 5 additions and 2 deletions

View file

@ -2,6 +2,9 @@ source 'https://rubygems.org'
gem "middleman", "~><%= Middleman::VERSION %>"
# 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"

View file

@ -7,8 +7,8 @@ gem "middleman", "~><%= Middleman::VERSION %>"
# Live-reloading plugin
gem "middleman-livereload", "~> 3.1.0"
# For faster file watcher updates:
# gem "wdm", "~> 0.1.0") # Windows
# 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