Skip to content

Instantly share code, notes, and snippets.

@edwinlab
Created August 6, 2018 07:21
Show Gist options
  • Save edwinlab/50f84250e59c7f044c7d29e5cf9e9671 to your computer and use it in GitHub Desktop.
Save edwinlab/50f84250e59c7f044c7d29e5cf9e9671 to your computer and use it in GitHub Desktop.
module Callable
extend ActiveSupport::Concern
class_methods do
def call(*args)
new(*args).call
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment