Advertisement
saasbook

ocp_fix_abstract_factory.rb

Aug 15th, 2013
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.24 KB | None | 0 0
  1. class Report
  2.   def output
  3.     formatter_class =
  4.       begin
  5.         @format.to_s.classify.constantize
  6.       rescue NameError
  7.         # ...handle 'invalid formatter type'
  8.       end
  9.     formatter = formatter_class.send(:new, self)
  10.     # etc
  11.   end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement