Class: Vedeu::Application
- Inherits:
-
Object
- Object
- Vedeu::Application
- Defined in:
- lib/vedeu/application.rb
Class Method Summary collapse
-
.start(options = {}) ⇒ Object
:nocov:.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Application
constructor
A new instance of Application.
- #start ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Application
13 14 15 |
# File 'lib/vedeu/application.rb', line 13 def initialize( = {}) = end |
Class Method Details
.start(options = {}) ⇒ Object
:nocov:
9 10 11 |
# File 'lib/vedeu/application.rb', line 9 def self.start( = {}) new().start end |
Instance Method Details
#start ⇒ Object
17 18 19 20 21 22 23 24 25 |
# File 'lib/vedeu/application.rb', line 17 def start Terminal.open(mode) do Terminal.set_cursor_mode Vedeu.events.trigger(:refresh) runner { main_sequence } end end |