class ComponentParty::Configuration

Configuration class for ComponentParty @attr components_path [String] Components folder path (defaults to 'app/components') @attr components_path [String] Component's template file name (defaults to 'template')

Attributes

component_folder_for_actions[RW]
components_path[RW]
template_file_name[RW]
view_model_file_name[RW]

Public Class Methods

new() click to toggle source
# File lib/component_party.rb, line 17
def initialize
  @components_path = 'app/components'
  @template_file_name = 'template'
  @view_model_file_name = 'view_model'
  @component_folder_for_actions = 'pages'
end