Class: MacroObject
- Inherits:
-
Object
- Object
- MacroObject
- Defined in:
- lib/ruby-macrodroid.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ MacroObject
constructor
A new instance of MacroObject.
- #to_h ⇒ Object
Constructor Details
#initialize(h = {}) ⇒ MacroObject
Returns a new instance of MacroObject.
539 540 541 542 543 544 545 546 547 548 549 550 |
# File 'lib/ruby-macrodroid.rb', line 539 def initialize(h={}) @h = {constraint_list: [], is_or_condition: false, is_disabled: false}.merge(h) @list = [] # fetch the class name and convert from camelCase to snake_eyes @type = self.class.to_s.sub(/Trigger|Action$/,'')\ .gsub(/\B[A-Z][a-z]/){|x| '_' + x.downcase}\ .gsub(/[a-z][A-Z]/){|x| x[0] + '_' + x[1].downcase}\ .downcase.to_sym end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
537 538 539 |
# File 'lib/ruby-macrodroid.rb', line 537 def end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
536 537 538 |
# File 'lib/ruby-macrodroid.rb', line 536 def type @type end |
Instance Method Details
#to_h ⇒ Object
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 |
# File 'lib/ruby-macrodroid.rb', line 552 def to_h() h = @h h2 = h.inject({}) do |r,x| puts 'x: ' + x.inspect if @debug key, value = x puts 'key: ' + key.inspect if @debug new_key = key.to_s.gsub(/\w_\w/){|x| x[0] + x[-1].upcase} new_key = new_key.prepend 'm_' unless @list.include? new_key new_key = 'm_SIGUID' if new_key == 'm_siguid' r.merge(new_key => value) end h2.merge('m_classType' => self.class.to_s) end |