Method: Gct::Command::Create::Swift#validate!

Defined in:
lib/gct/command/create/swift.rb

#validate!Object



27
28
29
30
31
32
33
# File 'lib/gct/command/create/swift.rb', line 27

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