lib/fontcustom.rb in fontcustom-0.1.4 vs lib/fontcustom.rb in fontcustom-1.0.0.pre

- old
+ new

@@ -1,21 +1,6 @@ -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 +require "fontcustom/version" +require "fontcustom/options" +require "fontcustom/error" +require "fontcustom/util" +require "fontcustom/generator/font" +require "fontcustom/generator/template"