Class: FlutterRb::FlutterRbConfig
- Inherits:
-
Object
- Object
- FlutterRb::FlutterRbConfig
- 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
-
#android_checks ⇒ Object
Provides read and write access to the android_checks attribute.
-
#flutter_checks ⇒ Object
Provides read and write access to the flutter_checks attribute.
-
#ios_checks ⇒ Object
Provides read and write access to the ios_checks attribute.
Instance Method Summary collapse
-
#initialize(flutter_checks, android_checks, ios_checks) ⇒ FlutterRbConfig
constructor
Initializes a new instance of FlutterRbConfig.
Constructor Details
#initialize(flutter_checks, android_checks, ios_checks) ⇒ FlutterRbConfig
Initializes a new instance of FlutterRbConfig.
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_checks ⇒ Object
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_checks ⇒ Object
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_checks ⇒ Object
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 |