Sha256: 3be1964b7e3b4ce1cb3c55a3a8337694f46d0006e25cc809b899ee77e5182459
Contents?: true
Size: 477 Bytes
Versions: 1
Compression:
Stored size: 477 Bytes
Contents
module Spline require 'thor' Dir["#{File.dirname(__FILE__)}/commands/concrete_commands/*.rb"].each { |file| require_relative file } class SplineCli < Thor # register(class_name, subcommand_alias, usage_list_string, description_string) register(InstallCommand, "install", "install", "setup spline") register(ActionCommand, "paction", "paction", "Generate action stub") register(ProcessCommand, "process", "process", "Generate process stub") end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spline-0.0.14 | lib/spline/spline_cli.rb |