Skip to content

Instantly share code, notes, and snippets.

@kiote
Created October 26, 2011 14:21
Show Gist options
  • Save kiote/1316500 to your computer and use it in GitHub Desktop.
Save kiote/1316500 to your computer and use it in GitHub Desktop.
class Generator
def initialize(reporter, title, text)
@reporter = reporter
@title = title
@text = text
end
def make_report
@reporter.output_report(title, text)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment