Class: Leftovers::Matchers::NodePrivacy
- Inherits:
-
Object
- Object
- Leftovers::Matchers::NodePrivacy
- Includes:
- ComparableInstance
- Defined in:
- lib/leftovers/matchers/node_privacy.rb
Instance Attribute Summary collapse
-
#matcher ⇒ Object
readonly
Returns the value of attribute matcher.
Instance Method Summary collapse
- #===(node) ⇒ Object
-
#initialize(matcher) ⇒ NodePrivacy
constructor
A new instance of NodePrivacy.
Methods included from ComparableInstance
Constructor Details
#initialize(matcher) ⇒ NodePrivacy
Returns a new instance of NodePrivacy.
10 11 12 13 14 |
# File 'lib/leftovers/matchers/node_privacy.rb', line 10 def initialize(matcher) @matcher = matcher freeze end |
Instance Attribute Details
#matcher ⇒ Object (readonly)
Returns the value of attribute matcher.
8 9 10 |
# File 'lib/leftovers/matchers/node_privacy.rb', line 8 def matcher @matcher end |
Instance Method Details
#===(node) ⇒ Object
16 17 18 |
# File 'lib/leftovers/matchers/node_privacy.rb', line 16 def ===(node) @matcher === node.privacy end |