namespace :neverprint do

namespace :precompile do
  desc "Start monitoring assets using Guard."
  task :all do
    puts "Starting Guard... "
    system(%{
      bundle exec guard --no-interactions
    })
    puts "Done."
  end
end

desc "Start jekyll server with auto update enabled for when files change."
task :serve do
  puts "Starting Jekyll..."
  system(%{
    jekyll serve --port 8888 --watch
  })
  puts "Done."
end

end

# List all available rake tasks task :default do

system('rake -T')

end