class Xezat::Main

Public Instance Methods

announce(cygport) click to toggle source
# File lib/xezat/main.rb, line 73
def announce(cygport)
  require 'xezat/command/announce'
  Command::Announce.new(nil, cygport).execute
end
bump(cygport) click to toggle source
# File lib/xezat/main.rb, line 35
def bump(cygport)
  require 'xezat/command/bump'
  Command::Bump.new(options, cygport).execute
end
doctor() click to toggle source
# File lib/xezat/main.rb, line 46
def doctor
  require 'xezat/command/doctor'
  Command::Doctor.new.execute
end
init(cygport) click to toggle source
# File lib/xezat/main.rb, line 27
def init(cygport)
  require 'xezat/command/init'
  Command::Init.new(options, cygport).execute
end
port(cygport) click to toggle source
# File lib/xezat/main.rb, line 59
def port(cygport)
  require 'xezat/command/port'
  Command::Port.new(options, cygport).execute
end
validate(cygport) click to toggle source
# File lib/xezat/main.rb, line 66
def validate(cygport)
  require 'xezat/command/validate'
  Command::Validate.new(nil, cygport).execute
end
version() click to toggle source
# File lib/xezat/main.rb, line 16
def version
  puts "Xezat #{Xezat::VERSION}"
end