module ActiveFedora::Delegation

def method_missing(method, *args, &block)

def method_missing(method, *args, &block)
  if Array.method_defined?(method)
    self.class.delegate method, :to => :to_a
    to_a.send(method, *args, &block)
  else
    super
  end
end