Skip to content

Instantly share code, notes, and snippets.

@jcypret
Created February 3, 2015 04:23
Show Gist options
  • Save jcypret/183458b3bfa8a5574c8e to your computer and use it in GitHub Desktop.
Save jcypret/183458b3bfa8a5574c8e to your computer and use it in GitHub Desktop.
Module for creating service objects
module Service
extend ActiveSupport::Concern
included do
def self.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