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 Action
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.
2781 2782 2783 2784 2785 2786 2787 2788 2789 |
# File 'lib/ruby-macrodroid.rb', line 2781 def initialize(h={}) = { :'12_hour' => true } super(.merge h) end |
Instance Method Details
#invoke ⇒ Object
2791 2792 2793 2794 2795 |
# File 'lib/ruby-macrodroid.rb', line 2791 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
2797 2798 2799 |
# File 'lib/ruby-macrodroid.rb', line 2797 def to_pc() 'say current_time()' end |
#to_s ⇒ Object
2801 2802 2803 |
# File 'lib/ruby-macrodroid.rb', line 2801 def to_s() 'Say Current Time' end |