Class: HubStore::Ui
- Inherits:
-
Object
- Object
- HubStore::Ui
- Defined in:
- lib/hub_store/ui.rb
Constant Summary collapse
- FORMAT =
":spinner :title :status"
Instance Method Summary collapse
- #info(progname, &block) ⇒ Object
-
#initialize ⇒ Ui
constructor
A new instance of Ui.
- #start(msg) ⇒ Object
- #stop(msg) ⇒ Object
- #update(msg) ⇒ Object
Constructor Details
Instance Method Details
#info(progname, &block) ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/hub_store/ui.rb', line 12 def info(progname, &block) case progname when HubLink::START start block.call when HubLink::FINISH stop block.call else update block.call end end |
#start(msg) ⇒ Object
23 24 25 26 |
# File 'lib/hub_store/ui.rb', line 23 def start(msg) spinner.update(title: format(msg), status: nil) spinner.auto_spin end |
#stop(msg) ⇒ Object
32 33 34 35 |
# File 'lib/hub_store/ui.rb', line 32 def stop(msg) spinner.update(status: nil) spinner.success("(#{format msg, :green})") end |
#update(msg) ⇒ Object
28 29 30 |
# File 'lib/hub_store/ui.rb', line 28 def update(msg) spinner.update(status: msg) end |