Flowdock
method

instance_exec

Importance_1
v1_8_7_330 - Show latest stable - 0 notes - Class: Object
instance_exec(...) public

Executes the given block within the context of the receiver (obj). In order to set the context, the variable self is set to obj while the code is executing, giving the code access to obj’s instance variables. Arguments are passed as block parameters.

class KlassWithSecret
  def initialize
    @secret = 99
  end
end
k = KlassWithSecret.new
k.instance_exec(5) {|x| @secret+x }   #=> 104
Show source
Register or log in to add new notes.