Class: RShade::Filter::AbstractFilter
- Inherits:
-
Object
- Object
- RShade::Filter::AbstractFilter
show all
- Defined in:
- lib/rshade/filter/abstract_filter.rb
Instance Method Summary
collapse
Instance Method Details
#call(event) ⇒ Object
14
15
16
|
# File 'lib/rshade/filter/abstract_filter.rb', line 14
def call(event)
raise NotImplementedError
end
|
#config(&block) ⇒ Object
22
23
24
25
|
# File 'lib/rshade/filter/abstract_filter.rb', line 22
def config(&block)
config_call(&block)
self
end
|
#config_call ⇒ Object
18
19
20
|
# File 'lib/rshade/filter/abstract_filter.rb', line 18
def config_call
raise NotImplementedError
end
|
6
7
8
|
# File 'lib/rshade/filter/abstract_filter.rb', line 6
def name
raise NotImplementedError
end
|
10
11
12
|
# File 'lib/rshade/filter/abstract_filter.rb', line 10
def priority
raise NotImplementedError
end
|