Class: Jmpod::Command::Config::Set

Inherits:
Jmpod::Command::Config show all
Defined in:
lib/jmpod/command/config/set.rb

Instance Method Summary collapse

Methods inherited from Jmpod::Command

options, run

Constructor Details

#initialize(argv) ⇒ Set

self.arguments = [

CLAide::Argument.new('NAME', true),

]



15
16
17
18
19
# File 'lib/jmpod/command/config/set.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/config/set.rb', line 29

def run
  puts "设置全局配置成功".green
end

#validate!Object



21
22
23
24
25
26
27
# File 'lib/jmpod/command/config/set.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