Sha256: c6ed459257bcaf83b0af586aadfb96ef68bf5bd95eb8dec978b91dd5193150e2
Contents?: true
Size: 741 Bytes
Versions: 1
Compression:
Stored size: 741 Bytes
Contents
module Spline require 'thor' Dir["#{File.dirname(__FILE__)}/commands/concrete_commands/*.rb"].each { |file| require_relative file } class SplineCli < Thor # Retrieve all classes from the Spline module that end with Command except Spline::Command abstract class # Register all those classes so they are available in the terminal as commands. # register(class_name, subcommand_alias, usage_list_string, description_string) commands = Spline.constants.select { |c| c.match(/\w+Command/) && Spline.const_get(c).is_a?(Class) } commands.each do |command| commandClass = Spline.const_get(command) register(commandClass, commandClass.alias, commandClass.usage_tip, commandClass.description) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spline-0.0.17 | lib/spline/spline_cli.rb |