Skip to content

Instantly share code, notes, and snippets.

@mayra-cabrera
Last active December 16, 2015 01:22
Show Gist options
  • Save mayra-cabrera/09428e1546c6a7656018 to your computer and use it in GitHub Desktop.
Save mayra-cabrera/09428e1546c6a7656018 to your computer and use it in GitHub Desktop.
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