Module: Pacer::Filter::BlockFilter
- Defined in:
- lib/pacer/filter/block_filter.rb
Instance Attribute Summary collapse
-
#block ⇒ Object
Returns the value of attribute block.
-
#invert ⇒ Object
Returns the value of attribute invert.
Instance Method Summary collapse
Instance Attribute Details
#block ⇒ Object
Returns the value of attribute block.
16 17 18 |
# File 'lib/pacer/filter/block_filter.rb', line 16 def block @block end |
#invert ⇒ Object
Returns the value of attribute invert.
16 17 18 |
# File 'lib/pacer/filter/block_filter.rb', line 16 def invert @invert end |
Instance Method Details
#==(other) ⇒ Object
18 19 20 |
# File 'lib/pacer/filter/block_filter.rb', line 18 def ==(other) super and invert == other.invert and block == other.block end |