Class: Soapstone::UI::Screens::Wizard
- Inherits:
-
Object
- Object
- Soapstone::UI::Screens::Wizard
- Defined in:
- lib/soapstone/ui/screens/wizard.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ Wizard
constructor
A new instance of Wizard.
- #start ⇒ Object
Constructor Details
Class Method Details
.start ⇒ Object
2 3 4 |
# File 'lib/soapstone/ui/screens/wizard.rb', line 2 def self.start new.start end |
Instance Method Details
#start ⇒ Object
11 12 13 14 15 16 |
# File 'lib/soapstone/ui/screens/wizard.rb', line 11 def start loop do choice = Soapstone::UI::Screens::Welcome.call break if (choice) == :exit end end |