Sha256: 6bc4b91f0f12737df95f6b02197daca736af0bc543bb8a57224a0ca49c2ba5c1
Contents?: true
Size: 669 Bytes
Versions: 19
Compression:
Stored size: 669 Bytes
Contents
module Softcover class Builder include Softcover::Utils attr_accessor :manifest, :built_files def initialize @manifest = Softcover::BookManifest.new(verify_paths: true, source: source) @built_files = [] write_polytexnic_commands_file end def build!(options={}) setup build(options) verify self end def clean!; end private def setup; end def verify; end # Writes out the PolyTeXnic commands from polytexnic. def write_polytexnic_commands_file Polytexnic.write_polytexnic_style_file(Dir.pwd) end end end
Version data entries
19 entries across 19 versions & 1 rubygems