Class: Fission::CLI

Inherits:
Object show all
Defined in:
lib/fission.old/cli.rb

Class Method Summary collapse

Class Method Details

.commandsObject



48
49
50
51
52
53
54
# File 'lib/fission.old/cli.rb', line 48

def self.commands
  cmds = Dir.entries(File.join(File.dirname(__FILE__), 'command')).select do |file|
    !File.directory? file
  end

  cmds.map { |cmd| File.basename(cmd, '.rb').gsub '_', ' ' }
end

.execute(args = ARGV) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/fission.old/cli.rb', line 3

def self.execute(args=ARGV)
  optparse = OptionParser.new do |opts|
    opts.banner = "\nUsage: fission [options] COMMAND [arguments]"

    opts.on_head('-v', '--version', 'Output the version of fission') do
      Fission.ui.output Fission::VERSION
      exit(0)
    end

    opts.on_head('-h', '--help', 'Displays this message') do
      show_all_help(optparse)
      exit(0)
    end

    opts.define_tail do
      commands_banner
    end

  end

  begin
    optparse.order! args
  rescue OptionParser::InvalidOption => e
    Fission.ui.output e
    show_all_help(optparse)
    exit(1)
  end

  if commands.include?(args.first)
    @cmd = Fission::Command.const_get(args.first.capitalize).new args.drop 1
  elsif is_snapshot_command?(args)
    klass = args.take(2).map {|c| c.capitalize}.join('')
    @cmd = Fission::Command.const_get(klass).new args.drop 2
  else
    show_all_help(optparse)
    exit(1)
  end

  begin
    @cmd.execute
  rescue Error => e
     puts "Error: #{e}"
  end
end