Class: Jrf::Runner::ProbeValue

Inherits:
Object
  • Object
show all
Defined in:
lib/jrf/runner.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object



16
17
18
# File 'lib/jrf/runner.rb', line 16

def method_missing(name, *args, &block)
  self
end

Instance Method Details

#[](key) ⇒ Object



12
13
14
# File 'lib/jrf/runner.rb', line 12

def [](key)
  self
end

#respond_to_missing?(name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/jrf/runner.rb', line 20

def respond_to_missing?(name, include_private = false)
  true
end