Sha256: 9cb39e11f6fe2b43e2fa24655205940a0108b99b4e2b7a26da494f9e02382cf3
Contents?: true
Size: 368 Bytes
Versions: 38
Compression:
Stored size: 368 Bytes
Contents
# encoding: utf-8 desc 'Remove output files generated by nanoc3' task :clean do # Load site site = Nanoc3::Site.new('.') if site.nil? $stderr.puts 'The current working directory does not seem to be a ' + 'valid/complete nanoc site directory; aborting.' exit 1 end # Clean clean = ::Nanoc3::Tasks::Clean.new(site) clean.run end
Version data entries
38 entries across 38 versions & 1 rubygems