Class: FlutterRb::FlutterRbConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/flutter_rb/config/flutter_rb_config.rb

Overview

This class represents the configuration for FlutterRb checks. It holds arrays of checks for Flutter, Android, and iOS platforms.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(flutter_checks, android_checks, ios_checks) ⇒ FlutterRbConfig

Initializes a new instance of FlutterRbConfig.

Parameters:

  • flutter_checks (Array<Check>)

    An array of Flutter checks.

  • android_checks (Array<Check>)

    An array of Android checks.

  • ios_checks (Array<Check>)

    An array of iOS checks.



12
13
14
15
16
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 12

def initialize(flutter_checks, android_checks, ios_checks)
  @flutter_checks = flutter_checks
  @android_checks = android_checks
  @ios_checks = ios_checks
end

Instance Attribute Details

#android_checksObject

Provides read and write access to the android_checks attribute.



22
23
24
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 22

def android_checks
  @android_checks
end

#flutter_checksObject

Provides read and write access to the flutter_checks attribute.



19
20
21
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 19

def flutter_checks
  @flutter_checks
end

#ios_checksObject

Provides read and write access to the ios_checks attribute.



25
26
27
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 25

def ios_checks
  @ios_checks
end