method

layout_directory?

rails latest stable - Class: ActionController::Layout

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.2.1) is shown here.

layout_directory?(layout_name)
private

No documentation available.

# File actionpack/lib/action_controller/layout.rb, line 274
      def layout_directory?(layout_name)
        @template.__send__(:_pick_template, "#{File.join('layouts', layout_name)}.#{@template.template_format}") ? true : false
      rescue ActionView::MissingTemplate
        false
      end