Class: SayTimeAction
- Inherits:
-
DateTimeAction
- Object
- MacroObject
- Action
- DateTimeAction
- SayTimeAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Date/Time
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ SayTimeAction
constructor
A new instance of SayTimeAction.
- #invoke ⇒ Object
- #to_pc ⇒ Object
- #to_s ⇒ Object
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ SayTimeAction
Returns a new instance of SayTimeAction.
2645 2646 2647 2648 2649 2650 2651 2652 2653 |
# File 'lib/ruby-macrodroid.rb', line 2645 def initialize(h={}) = { :'12_hour' => true } super(.merge h) end |
Instance Method Details
#invoke ⇒ Object
2655 2656 2657 2658 2659 |
# File 'lib/ruby-macrodroid.rb', line 2655 def invoke() time = ($env and $env[:time]) ? $env[:time] : Time.now tformat = @h['12_hour'] ? "%-I:%M%P" : "%H:%M" super(time.strftime(tformat)) end |
#to_pc ⇒ Object
2661 2662 2663 |
# File 'lib/ruby-macrodroid.rb', line 2661 def to_pc() 'say current_time()' end |
#to_s ⇒ Object
2665 2666 2667 |
# File 'lib/ruby-macrodroid.rb', line 2665 def to_s() 'Say Current Time' end |