Unable to start Jekyll server in --watch mode in Windows 7 -
i'm trying run jekyll server in --watch mode in windows 7. fails start , throws error message:
blog [ master ] > jekyll server --trace --watch configuration file: c:/vraa/repo/blog/_config.yml source: c:/vraa/repo/blog destination: c:/vraa/repo/blog/_site generating... done. c:/ruby193/lib/ruby/gems/1.9.1/gems/listen-2.7.7/lib/listen/adapter/windows.rb:21:in `rescue in usable?': undefined method `_log' listen::adapter::windows:class (nomethoderror) c:/ruby193/lib/ruby/gems/1.9.1/gems/listen-2.7.7/lib/listen/adapter/windows.rb:17:in `usable?'
while building jekyll site , starting server successful, --watch
mode 1 failing.
any ideas?
i'm using jekyll version 2.0.03 in windows 7 64 bit , ruby version 1.9.3.
there have been changes in newer versions of jekyll (v 1.0+). --server
command obsolete. run server in watch mode, type following:
jekyll serve --watch
also, run following update listen ruby gem 2.7.8 (released on june 12, 2014) has bug fixed:
gem update listen
that should running.
Comments
Post a Comment