Skip to content

Instantly share code, notes, and snippets.

@kmayer
Last active December 14, 2015 02:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmayer/5017851 to your computer and use it in GitHub Desktop.
Save kmayer/5017851 to your computer and use it in GitHub Desktop.
Replace create methods with method missing
- def create_user(overrides = {})
- new_user(overrides).tap(&:save!)
- end
-
private
+ def method_missing(method, *args)
+ if method.to_s =~ /^create_(.+)$/
+ send("new_#{$1}", *args).tap(&:save!)
+ else
+ super
+ end
+ end
+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment