Sha256: eba85d29e92612b33e5f1dfdc7baf1f7a4758a2463e8b2dac671daeb6dff346e

Contents?: true

Size: 1.2 KB

Versions: 2

Compression:

Stored size: 1.2 KB

Contents

require 'optparse'

require 'outliers/cli/process'

module Outliers
  module CLI

    def self.start
      cmd = ARGV.shift

      case cmd
      when 'process'
        begin
          CLI::Process.new.process
        rescue OptionParser::MissingArgument => e
          puts e.message
          exit 1
        end
      when '-v'
        puts OUTLIERS::VERSION
      else
        puts "Unknown command: '#{cmd}'."
        puts ''
        usage
        exit 1
      end
    end

    def self.usage
      puts 'Usage: outliers command'
      puts ''
      puts 'Append -h for help on specific subcommand.'
      puts ''
      puts 'See http://brettweavnet.github.io/outliers for documentation.'
      puts ''

      puts 'Commands:'
      commands.each do |cmd|
        $stdout.printf "    %-#{length_of_longest_command}s      %s\n",
                       cmd.command_name,
                       cmd.command_summary
      end
    end

    def self.commands
      return @commands if @commands
      klasses   = Outliers::CLI.constants
      @commands = klasses.map { |klass| Outliers::CLI.const_get(klass).new }
    end

    def self.length_of_longest_command
      commands.map { |c| c.command_name.length }.max
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
outliers-0.3.3 lib/outliers/cli.rb
outliers-0.3.2 lib/outliers/cli.rb