Class: MetaPresenter::Base
- Inherits:
-
Object
- Object
- MetaPresenter::Base
- Includes:
- DelegateAllTo, DelegateToController
- Defined in:
- lib/meta_presenter/base.rb,
lib/meta_presenter/base/delegate_all_to.rb,
lib/meta_presenter/base/delegate_to_controller.rb
Overview
Base presenter class. Inherit from this it in order to get a presenter you can use in your views
Defined Under Namespace
Modules: DelegateAllTo, DelegateToController
Constant Summary
Constants included from DelegateToController
DelegateToController::INCLUDE_PRIVATE_METHODS
Instance Method Summary collapse
-
#inspect ⇒ String
Displayed in errors involving the presenter.
Instance Method Details
#inspect ⇒ String
Displayed in errors involving the presenter
26 27 28 29 |
# File 'lib/meta_presenter/base.rb', line 26 def inspect # Concise to not dump too much information on the dev "#<#{self.class.name}>" end |