Class: Flappy::CLI

Inherits:
Thor show all
Defined in:
lib/flappy/cli.rb

Instance Method Summary collapse

Instance Method Details

#archive_ipa(*args) ⇒ Object



86
87
88
89
# File 'lib/flappy/cli.rb', line 86

def archive_ipa(*args)
  prepare :archive_ipa
  Flappy.archive_ipa(*args, options)
end

#build_apk(*args) ⇒ Object



38
39
40
41
42
# File 'lib/flappy/cli.rb', line 38

def build_apk(*args)
  prepare :build_apk

  Flappy.build_apk(*args, options)
end

#build_ipa(*args) ⇒ Object



80
81
82
83
# File 'lib/flappy/cli.rb', line 80

def build_ipa(*args)
  prepare :build_ipa
  Flappy.build_ipa(*args, options)
end

#help(command = nil, subcommand = false) ⇒ Object



120
121
122
# File 'lib/flappy/cli.rb', line 120

def help(command = nil, subcommand = false)
  super
end

#publish(*args) ⇒ Object



112
113
114
115
116
# File 'lib/flappy/cli.rb', line 112

def publish(*args)
  prepare :publish

  Flappy.publish(*args, options)
end