Class: Interactify::Async::NullJob
- Inherits:
-
Object
- Object
- Interactify::Async::NullJob
show all
- Defined in:
- lib/interactify/async/null_job.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing ⇒ Object
6
7
8
|
# File 'lib/interactify/async/null_job.rb', line 6
def method_missing(...)
self
end
|
Class Method Details
.method_missing ⇒ Object
10
11
12
|
# File 'lib/interactify/async/null_job.rb', line 10
def self.method_missing(...)
self
end
|
.respond_to_missing? ⇒ Boolean
18
19
20
|
# File 'lib/interactify/async/null_job.rb', line 18
def self.respond_to_missing?(...)
true
end
|
Instance Method Details
#respond_to_missing? ⇒ Boolean
14
15
16
|
# File 'lib/interactify/async/null_job.rb', line 14
def respond_to_missing?(...)
true
end
|