class Totes::Subject
Public Class Methods
new(subject)
click to toggle source
# File lib/totes/subject.rb, line 6 def initialize(subject) @subject = subject end
Public Instance Methods
method_missing(name, *args, &block)
click to toggle source
# File lib/totes/subject.rb, line 10 def method_missing(name, *args, &block) # puts "#{name.inspect}(#{args.map(&:inspect).join(",")})" @subject.__send__ name, *args, &block end