class Spy::Blueprint
Attributes
msg[R]
target[R]
type[R]
Public Class Methods
new(target, msg, type)
click to toggle source
# File lib/spy/blueprint.rb, line 5 def initialize(target, msg, type) @target = target @msg = msg @type = type @caller = _caller end
Public Instance Methods
caller()
click to toggle source
# File lib/spy/blueprint.rb, line 14 def caller @caller end
Also aliased as: _caller
to_s()
click to toggle source
# File lib/spy/blueprint.rb, line 18 def to_s [@target.object_id, @msg, @type].join("|") end