Created
October 14, 2013 02:05
-
-
Save braidn/6969645 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Quarterly | |
class GiftMailerFactory | |
def self.create(args) | |
new.create(args) | |
end | |
def create | |
#do something that either produces data or | |
#instantiates another Class? | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment