Last active
December 16, 2015 01:22
-
-
Save mayra-cabrera/09428e1546c6a7656018 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Report | |
def initialize | |
@strategy = {} | |
@strategy[Number] = NumberStrategy.new | |
@strategy[String] = StringStrategy.new | |
@strategy[SomethingElse] = SomethingElseStrategy.new | |
end | |
def generate | |
@data = extract_data | |
@strategy[@data].run | |
present_results | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment