Sha256: 41467ee64af5c1aca45178ba5c9718f854f76bbfd1d5853fd723ff64d33b67ea
Contents?: true
Size: 948 Bytes
Versions: 2
Compression:
Stored size: 948 Bytes
Contents
require "bundler/ui/shell" module Gemsmith module Rake # Enhances gem publishing with build functionality. Meant to be wrapped in Rake tasks. class Build def initialize shell: Bundler::UI::Shell.new, kernel: Kernel @shell = shell @kernel = kernel end def table_of_contents if kernel.system("command -v doctoc > /dev/null") kernel.system %(doctoc --title "# Table of Contents" README.md) else shell.error error_message kernel.exit 1 end end def clean! FileUtils.rm_rf "pkg" shell.info "Gem artifacts cleaned." end private attr_reader :shell, :kernel def error_message url = "https://github.com/thlorenz/doctoc" command = "npm install --global doctoc" "Unable to update README Table of Contents, please install DocToc (#{url}): #{command}." end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gemsmith-5.5.0 | lib/gemsmith/rake/build.rb |
gemsmith-5.4.0 | lib/gemsmith/rake/build.rb |