Module ABingoCampingPlugin::Views
In: lib/camping-abingo.rb

Views module for the ABingo Camping Plugin. The module will be plugged in to the main app views module using:

       - extend to add class methods to the app views module
      -  include_abingo_views to dynamically plugin the common ABingo views (e.g. authorize_view)

Example:

 module CampingABingoTest::Views
              extend ABingoCampingPlugin::Views

              # ...

              include_abingo_views
 end

Methods

Public Class methods

Returns the source code for all common ABingo views such as error views (e.g. authorize_failure)

Public Instance methods

Includes all common ABingo views inside the views module using module_eval (this is why the call must be the last statement in the views module)

[Validate]