Skip to content

Instantly share code, notes, and snippets.

@ethangunderson
Created January 29, 2010 00:27
Show Gist options
  • Save ethangunderson/289325 to your computer and use it in GitHub Desktop.
Save ethangunderson/289325 to your computer and use it in GitHub Desktop.
def method_missing(method, *parameters)
raise NoMethodError unless @repo.respond_to?(method)
@repo.send(method, *parameters)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment