Class: Xezat::Main
- Inherits:
-
Thor
- Object
- Thor
- Xezat::Main
- Includes:
- ZshCompletion::Command
- Defined in:
- lib/xezat/main.rb
Instance Method Summary collapse
- #announce(cygport) ⇒ Object
- #bump(cygport) ⇒ Object
- #dist(cygport) ⇒ Object
- #doctor ⇒ Object
- #init(cygport) ⇒ Object
- #port(cygport) ⇒ Object
- #prep(cygport) ⇒ Object
- #validate(cygport) ⇒ Object
- #version ⇒ Object
Instance Method Details
#announce(cygport) ⇒ Object
84 85 86 87 |
# File 'lib/xezat/main.rb', line 84 def announce(cygport) require 'xezat/command/announce' Command::Announce.new(nil, cygport).execute end |
#bump(cygport) ⇒ Object
36 37 38 39 |
# File 'lib/xezat/main.rb', line 36 def bump(cygport) require 'xezat/command/bump' Command::Bump.new(, cygport).execute end |
#dist(cygport) ⇒ Object
69 70 71 72 |
# File 'lib/xezat/main.rb', line 69 def dist(cygport) require 'xezat/command/dist' Command::Dist.new(, cygport).execute end |
#doctor ⇒ Object
47 48 49 50 |
# File 'lib/xezat/main.rb', line 47 def doctor require 'xezat/command/doctor' Command::Doctor.new.execute end |
#init(cygport) ⇒ Object
28 29 30 31 |
# File 'lib/xezat/main.rb', line 28 def init(cygport) require 'xezat/command/init' Command::Init.new(, cygport).execute end |
#port(cygport) ⇒ Object
60 61 62 63 |
# File 'lib/xezat/main.rb', line 60 def port(cygport) require 'xezat/command/port' Command::Port.new(, cygport).execute end |
#prep(cygport) ⇒ Object
91 92 93 94 |
# File 'lib/xezat/main.rb', line 91 def prep(cygport) require 'xezat/command/prep' Command::Prep.new(, cygport).execute end |