Sha256: d8f73d40b4259b9d634af096c9f143b70752321bd9dcb4cba2af43edbafafcbe
Contents?: true
Size: 309 Bytes
Versions: 7
Compression:
Stored size: 309 Bytes
Contents
# frozen_string_literal: true require "bundler/gem_tasks" desc "Generate yard docs in public" task :gendocs do puts %x(yard -o public --files CHANGELOG.md,LICENSE.txt) puts %x(git add public/*) end desc "Generate docs and run :build" task :buildall => [ :gendocs, :build ] task default: :buildall
Version data entries
7 entries across 7 versions & 1 rubygems