Method: BasePresenter#initialize

Defined in:
lib/myrails/templates/rails/app/presenters/base.rb

#initialize(object, template) ⇒ BasePresenter

Initialize class with object to be presented and the view it is to be presented on



4
5
6
7
# File 'lib/myrails/templates/rails/app/presenters/base.rb', line 4

def initialize(object, template)
  @object = object
  @template = template
end