Class: Tremolo::Subscribers::Base
- Inherits:
-
Object
- Object
- Tremolo::Subscribers::Base
- Defined in:
- lib/tremolo/subscribers/base.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(args) ⇒ Base
constructor
A new instance of Base.
- #track! ⇒ Object
Constructor Details
#initialize(args) ⇒ Base
Returns a new instance of Base.
8 9 10 |
# File 'lib/tremolo/subscribers/base.rb', line 8 def initialize(args) @args = args end |
Class Method Details
.call(*args) ⇒ Object
4 5 6 |
# File 'lib/tremolo/subscribers/base.rb', line 4 def self.call(*args) new(args).track! end |
Instance Method Details
#track! ⇒ Object
12 13 14 |
# File 'lib/tremolo/subscribers/base.rb', line 12 def track! # noop, done by page/timing end |