Sha256: c8ed1b030791720d697bc3d40975b0ee8072e3fbcdde250f8bfe0f58c2ad944e

Contents?: true

Size: 340 Bytes

Versions: 1

Compression:

Stored size: 340 Bytes

Contents

desc 'Run Jekyll in config/jekyll directory without having to cd there'
task :generate do
  Dir.chdir("config/jekyll") do
    system('bundle exec jekyll build')
  end
end
desc 'Run Jekyll in config/jekyll directory with --watch'
task :autogenerate do
  Dir.chdir("config/jekyll") do
    system('bundle exec jekyll build --watch')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bloggy-0.3 lib/generators/jekyll/blog/templates/tasks/gen.rake.tt