class Momo::Reference
Public Class Methods
new(res)
click to toggle source
# File lib/momo/reference.rb, line 4 def initialize(res) @res = res end
Public Instance Methods
method_missing(name, *args, &block)
click to toggle source
# File lib/momo/reference.rb, line 12 def method_missing(name, *args, &block) puts "Ref missing #{name}" end
representation()
click to toggle source
# File lib/momo/reference.rb, line 8 def representation {"Ref" => @res} end