thomthom / skippy

CLI Development tool for SketchUp extensions
MIT License
21 stars 5 forks source link

Allow for arbitrary root namespace in SkippyLib #19

Open thomthom opened 6 years ago

thomthom commented 6 years ago

Instead of a fixed SkippyLib namespace for libraries, allow for user defined namespace:

module SkippyLib
  class Command
  end
end # module
module TT_Lib
  class Command
  end
end # module

To make it easier to rewrite the namespace, this must be defined in skippy.json:

{
  "library": true,
  "name": "tt-lib",
  "namespace": "TT_Lib",
  "version": "3.0.0",
}