saasbook

ocp_violation.rb

Mar 13th, 2014
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.19 KB | None | 0 0
  1. class Report
  2.   def output
  3.     formatter =
  4.       case @format
  5.       when :html
  6.         HtmlFormatter.new(self)
  7.       when :pdf
  8.         PdfFormatter.new(self)
  9.         # ...etc
  10.       end
  11.   end
  12. end
Add Comment
Please, Sign In to add comment