Sha256: 2b5dcdf8a0e4142ab39f1d16d9e2ace890a27978aef98e90a70609c8d59e77ca

Contents?: true

Size: 535 Bytes

Versions: 10

Compression:

Stored size: 535 Bytes

Contents

Capistrano::Configuration.instance(:must_exist).load do |configuration|
  
   namespace :jekyll do
     desc "Build static files from jekyll files"
     task :build do
       alert_user "Building static files from jekyll files"
       run_locally "jekyll"
     end

     desc "Create site (less and jekyll)"
     task :create do
       alert_user "[START] Creating site [START]"
       find_and_execute_task('less:build')
       find_and_execute_task('jekyll:build')
       alert_user "[END] Creating site [END]"
     end
   end
  
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
thunder_punch-0.0.14 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.13 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.12 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.11 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.10 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.9 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.8 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.7 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.6 lib/recipes/jekyll/jekyll.rb
thunder_punch-0.0.5 lib/recipes/jekyll/jekyll.rb