class Pod::Target::CLI

Handle the application command line parsing and the dispatch to various command objects

@api public

Constants

Error

Error raised by this runner

Public Instance Methods

resolve_dependency(*) click to toggle source
# File lib/pod/target/cli.rb, line 43
def resolve_dependency(*)
  require_relative 'commands/dependency'
  Pod::Target::Commands::Dependency.new(options).execute
end
target(*) click to toggle source
# File lib/pod/target/cli.rb, line 31
def target(*)
  require_relative 'commands/target'
  Pod::Target::Commands::Target.new(options).execute
end
version() click to toggle source
# File lib/pod/target/cli.rb, line 16
def version
  require_relative 'version'
  puts "v#{Pod::Target::VERSION}"
end