Class: HakumiComponents::Configuration
- Inherits:
-
Object
- Object
- HakumiComponents::Configuration
- Extended by:
- T::Sig
- Defined in:
- lib/hakumi_components.rb
Instance Attribute Summary collapse
-
#base_path ⇒ Object
Returns the value of attribute base_path.
-
#default_form_builder ⇒ Object
Returns the value of attribute default_form_builder.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
44 45 46 47 |
# File 'lib/hakumi_components.rb', line 44 def initialize @base_path = T.let("hakumi/components", String) @default_form_builder = T.let(false, T::Boolean) end |
Instance Attribute Details
#base_path ⇒ Object
Returns the value of attribute base_path.
38 39 40 |
# File 'lib/hakumi_components.rb', line 38 def base_path @base_path end |
#default_form_builder ⇒ Object
Returns the value of attribute default_form_builder.
41 42 43 |
# File 'lib/hakumi_components.rb', line 41 def default_form_builder @default_form_builder end |