Class: Gloo::Verbs::Wait
- Inherits:
-
Core::Verb
- Object
- Core::Baseo
- Core::Verb
- Gloo::Verbs::Wait
- Defined in:
- lib/gloo/verbs/wait.rb
Constant Summary collapse
- KEYWORD =
'wait'.freeze
- KEYWORD_SHORT =
'w'.freeze
Constants inherited from Core::Baseo
Core::Baseo::NOT_IMPLEMENTED_ERR
Instance Attribute Summary
Attributes inherited from Core::Verb
Attributes inherited from Core::Baseo
Class Method Summary collapse
-
.doc_data ⇒ Object
Get the verb's documentation data.
-
.keyword ⇒ Object
Get the Verb's keyword.
-
.keyword_shortcut ⇒ Object
Get the Verb's keyword shortcut.
Instance Method Summary collapse
-
#run ⇒ Object
Run the verb.
Methods inherited from Core::Verb
#display_value, help, inherited, #initialize, #type_display
Methods inherited from Core::Baseo
Constructor Details
This class inherits a constructor from Gloo::Core::Verb
Class Method Details
.doc_data ⇒ Object
Get the verb's documentation data.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/gloo/verbs/wait.rb', line 47 def self.doc_data { :name => KEYWORD, :shortcut => KEYWORD_SHORT, :description => 'Wait for the given number of seconds.', :syntax => [ 'wait {seconds}' ], :parameters => [ '{seconds} — The number of seconds to wait. Optional. If no value is given, we will wait for 1 second.' ], :examples => <<~EXAMPLES.strip > wait > wait 3 > create x as int : 10 > wait x EXAMPLES } end |
.keyword ⇒ Object
Get the Verb's keyword.
29 30 31 |
# File 'lib/gloo/verbs/wait.rb', line 29 def self.keyword return KEYWORD end |
.keyword_shortcut ⇒ Object
Get the Verb's keyword shortcut.
36 37 38 |
# File 'lib/gloo/verbs/wait.rb', line 36 def self.keyword_shortcut return KEYWORD_SHORT end |
Instance Method Details
#run ⇒ Object
Run the verb.
17 18 19 20 21 22 23 24 |
# File 'lib/gloo/verbs/wait.rb', line 17 def run x = 1 if @tokens.token_count > 1 expr = Gloo::Expr::Expression.new( @engine, @tokens.params ) x = expr.evaluate.to_i end sleep x end |