Class: Jmpod::Command::Init::Unit

Inherits:
Jmpod::Command::Init show all
Defined in:
lib/jmpod/command/init/unit.rb

Instance Method Summary collapse

Methods inherited from Jmpod::Command

options, run

Constructor Details

#initialize(argv) ⇒ Unit

Returns a new instance of Unit.



15
16
17
18
19
# File 'lib/jmpod/command/init/unit.rb', line 15

def initialize(argv)
  @name = argv.shift_argument
  super
  @additional_args = argv.remainder!
end

Instance Method Details

#runObject



29
30
31
# File 'lib/jmpod/command/init/unit.rb', line 29

def run
  puts "new unit".green
end

#validate!Object



21
22
23
24
25
26
27
# File 'lib/jmpod/command/init/unit.rb', line 21

def validate!
  super
  help! 'A name for the Pod is required.' unless @name
  help! 'The Pod name cannot contain spaces.' if @name =~ /\s/
  help! 'The Pod name cannot contain plusses.' if @name =~ /\+/
  help! "The Pod name cannot begin with a '.'" if @name[0, 1] == '.'
end