Created
August 30, 2013 14:12
-
-
Save TerasawaShuhei/6390274 to your computer and use it in GitHub Desktop.
jekyll serve --watch と同時にブラウザで開く。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler/setup' | |
require 'thread' | |
require 'launchy' | |
desc 'preview' | |
task :preview do | |
Thread.new do | |
sleep 1 | |
Launchy.open 'http://localhost:9001/' | |
end | |
sh 'bundle exec jekyll serve --watch' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment