Sha256: 26da5f118d7474548881c8cfbd3e3ff0896a376956b0c485e87b7a81ab5945ba
Contents?: true
Size: 417 Bytes
Versions: 9
Compression:
Stored size: 417 Bytes
Contents
require 'fontcustom/version' require 'fontcustom/generator' require 'fontcustom/watcher' module Fontcustom # Usage: # Fontcustom.compile 'path/to/vectors', '-o', 'path/to/output' def compile(*args) Fontcustom::Generator.start(args) # as array end def watch(*args) Fontcustom::Watcher.watch(*args) end def stop Fontcustom::Watcher.stop end module_function :compile, :watch, :stop end
Version data entries
9 entries across 9 versions & 2 rubygems