class Tuttle::Presenters::BasePresenter

Public Class Methods

new(delegate, view) click to toggle source
Calls superclass method
# File lib/tuttle/presenters/base_presenter.rb, line 8
def initialize(delegate, view)
  @view = view
  super(delegate)
end

Public Instance Methods

h() click to toggle source

noinspection RubyInstanceMethodNamingConvention

# File lib/tuttle/presenters/base_presenter.rb, line 14
def h
  @view
end