Skip to content

Instantly share code, notes, and snippets.

@jacknoble
Created September 26, 2016 22:20
Show Gist options
  • Save jacknoble/c725a419abcc9715cde667c7f602bf46 to your computer and use it in GitHub Desktop.
Save jacknoble/c725a419abcc9715cde667c7f602bf46 to your computer and use it in GitHub Desktop.
class FooBarService
def self.call(arg)
new(arg).call
end
def initialize(thing)
@thing = thing
end
def call
# ...
end
end
FooBarService.call(thing)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment