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)


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

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)


2381
2382
2383
# File 'sig/types.rbs', line 2381

def enabled
  @enabled
end

#presetPreprocessingPreset?

Returns the value of attribute preset.

Returns:



2382
2383
2384
# File 'sig/types.rbs', line 2382

def preset
  @preset
end

#remove_formsBoolean?

Returns the value of attribute remove_forms.

Returns:

  • (Boolean, nil)


2384
2385
2386
# File 'sig/types.rbs', line 2384

def remove_forms
  @remove_forms
end

#remove_navigationBoolean?

Returns the value of attribute remove_navigation.

Returns:

  • (Boolean, nil)


2383
2384
2385
# File 'sig/types.rbs', line 2383

def remove_navigation
  @remove_navigation
end