Class: Xberg::PreprocessingOptions

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePreprocessingOptions

Returns a new instance of PreprocessingOptions.

Parameters:

  • enabled: (Boolean)
  • preset: (PreprocessingPreset)
  • remove_navigation: (Boolean)
  • remove_forms: (Boolean)


2429
# File 'sig/types.rbs', line 2429

def initialize: (?enabled: bool, ?preset: PreprocessingPreset, ?remove_navigation: bool, ?remove_forms: bool) -> void

Instance Attribute Details

#enabledBoolean?

Returns the value of attribute enabled.

Returns:

  • (Boolean, nil)


2424
2425
2426
# File 'sig/types.rbs', line 2424

def enabled
  @enabled
end

#presetPreprocessingPreset?

Returns the value of attribute preset.

Returns:



2425
2426
2427
# File 'sig/types.rbs', line 2425

def preset
  @preset
end

#remove_formsBoolean?

Returns the value of attribute remove_forms.

Returns:

  • (Boolean, nil)


2427
2428
2429
# File 'sig/types.rbs', line 2427

def remove_forms
  @remove_forms
end

#remove_navigationBoolean?

Returns the value of attribute remove_navigation.

Returns:

  • (Boolean, nil)


2426
2427
2428
# File 'sig/types.rbs', line 2426

def remove_navigation
  @remove_navigation
end