class Blueprinter::Base

def self.include_view(view_name)

Returns:
  • (Array) - an array of view names.

Other tags:
    Example: Including a normal view into an extended view. -

Parameters:
  • view_name (Symbol) -- the view to mix into the current view.
def self.include_view(view_name)
  current_view.include_view(view_name)
end