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)


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

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)


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

def enabled
  @enabled
end

#presetPreprocessingPreset?

Returns the value of attribute preset.

Returns:



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

def preset
  @preset
end

#remove_formsBoolean?

Returns the value of attribute remove_forms.

Returns:

  • (Boolean, nil)


2430
2431
2432
# File 'sig/types.rbs', line 2430

def remove_forms
  @remove_forms
end

#remove_navigationBoolean?

Returns the value of attribute remove_navigation.

Returns:

  • (Boolean, nil)


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

def remove_navigation
  @remove_navigation
end