Method: BitAnalytics#bit_op_or
- Defined in:
- lib/bit_analytics.rb
#bit_op_or(event, *events) ⇒ Object
98 99 100 101 102 103 |
# File 'lib/bit_analytics.rb', line 98 def bit_op_or(event, *events) bit_operation = BitOperation.new('OR', event, *events) bit_operation.redis = @redis bit_operation.execute bit_operation end |