Sha256: 34f7d2e0b19586193602c98b2cd35a640b3e32420fe48e501ca6242348e705ae
Contents?: true
Size: 379 Bytes
Versions: 7
Compression:
Stored size: 379 Bytes
Contents
desc 'Generate YARD documentation of Ramaze (optionally including Innate)' task :yard, :innate do |task, args| path = File.expand_path('../../doc', __FILE__) innate = nil # Include Innate if args[:innate] and File.directory?(args[:innate]) innate = File.join(File.expand_path(args[:innate]), '**', '*') end sh("rm -rf #{path}") sh("yard doc #{innate}") end
Version data entries
7 entries across 7 versions & 1 rubygems