class MfCloud::Invoice::Collection::Base

Attributes

meta[R]

Public Instance Methods

collection() click to toggle source
# File lib/mf_cloud/invoice/collection/base.rb, line 7
def collection
  @collection ||= []
end

Private Instance Methods

method_missing(method_name, *args , &block) click to toggle source
Calls superclass method
# File lib/mf_cloud/invoice/collection/base.rb, line 13
def method_missing(method_name, *args , &block)
  if collection.respond_to? method_name
    collection.__send__(method_name, *args, &block)
  else
    super
  end
end