flutter_rb 0.8.1 → 0.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,47 +1,47 @@
1
- require 'colorize'
2
-
3
- module FlutterRb
4
- # Check report
5
- class CheckReport
6
- def initialize(
7
- check_name,
8
- check_report_status,
9
- message,
10
- path
11
- )
12
- @check_name = check_name
13
- @check_report_status = check_report_status
14
- @message = message
15
- @path = path
16
- end
17
-
18
- def print(colorize: true)
19
- if colorize
20
- status_color = color_for_report_status(@check_report_status)
21
- " * [#{@check_report_status.colorize(status_color)}] #{@check_name}: #{@message}"
22
- else
23
- " * [#{@check_report_status}] #{@check_name}: #{@message}"
24
- end
25
- end
26
-
27
- def color_for_report_status(check_report_status)
28
- case check_report_status
29
- when CheckReportStatus::NORMAL
30
- :green
31
- when CheckReportStatus::WARNING
32
- :yellow
33
- when CheckReportStatus::ERROR
34
- :red
35
- end
36
- end
37
-
38
- attr_reader :check_name, :check_report_status, :message, :path
39
- end
40
-
41
- # Check report status
42
- class CheckReportStatus
43
- NORMAL = 'normal'.freeze
44
- WARNING = 'warning'.freeze
45
- ERROR = 'error'.freeze
46
- end
47
- end
1
+ require 'colorize'
2
+
3
+ module FlutterRb
4
+ # Check report
5
+ class CheckReport
6
+ def initialize(
7
+ check_name,
8
+ check_report_status,
9
+ message,
10
+ path
11
+ )
12
+ @check_name = check_name
13
+ @check_report_status = check_report_status
14
+ @message = message
15
+ @path = path
16
+ end
17
+
18
+ def print(colorize: true)
19
+ if colorize
20
+ status_color = color_for_report_status(@check_report_status)
21
+ " * [#{@check_report_status.colorize(status_color)}] #{@check_name}: #{@message}"
22
+ else
23
+ " * [#{@check_report_status}] #{@check_name}: #{@message}"
24
+ end
25
+ end
26
+
27
+ def color_for_report_status(check_report_status)
28
+ case check_report_status
29
+ when CheckReportStatus::NORMAL
30
+ :green
31
+ when CheckReportStatus::WARNING
32
+ :yellow
33
+ when CheckReportStatus::ERROR
34
+ :red
35
+ end
36
+ end
37
+
38
+ attr_reader :check_name, :check_report_status, :message, :path
39
+ end
40
+
41
+ # Check report status
42
+ class CheckReportStatus
43
+ NORMAL = 'normal'.freeze
44
+ WARNING = 'warning'.freeze
45
+ ERROR = 'error'.freeze
46
+ end
47
+ end
data/lib/flutter_rb.rb CHANGED
@@ -1,93 +1,93 @@
1
- require_relative './flutter_rb/project/project'
2
- require_relative './flutter_rb/checks/plugin_directories_check'
3
- require_relative './flutter_rb/checks/plugin_pubspec_check'
4
- require_relative './flutter_rb/checks/plugin_gradle_check'
5
- require_relative './flutter_rb/checks/plugin_podspec_check'
6
- require_relative './flutter_rb/config/flutter_rb_config_initializer'
7
-
8
- require_relative './checkstyle_report/checkstyle_report'
9
-
10
- module FlutterRb
11
- # Start FlutterRb checks
12
- class FlutterRb
13
- def start(path, with_report)
14
- project = ProjectParser.new(path).project
15
- if project.nil?
16
- exit_with_no_project
17
- else
18
- check_project(
19
- project,
20
- path,
21
- with_report
22
- )
23
- end
24
- end
25
-
26
- def exit_with_no_project
27
- puts 'No project'
28
- exit(-1)
29
- end
30
-
31
- # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
32
- def check_project(project, path, with_report)
33
- config_initializer = FlutterRbConfigInitializer.new
34
- config_path = "#{path}/.flutter_rb.yaml"
35
- config = File.exist?(config_path) ? config_initializer.parse(config_path) : config_initializer.default
36
- checks = explore_project(
37
- project,
38
- config.flutter_checks,
39
- config.android_checks,
40
- config.ios_checks
41
- )
42
- checks.each { |check| puts check.print }
43
- errors = checks.reject { |check| check.check_report_status == CheckReportStatus::NORMAL }
44
- create_report(path, checks) if with_report
45
- exit(errors.empty? ? 0 : -1)
46
- end
47
- # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
48
-
49
- def explore_project(
50
- project,
51
- flutter_checks,
52
- android_checks,
53
- ios_checks
54
- )
55
- result = []
56
- result += flutter_checks.map { |check| check.check(project) }
57
- result += android_checks.map { |check| check.check(project) } unless project.android_folder.nil?
58
- result += ios_checks.map { |check| check.check(project) } unless project.ios_folder.nil?
59
- result
60
- end
61
-
62
- # rubocop:disable Metrics/MethodLength
63
- def create_report(path, checks)
64
- errors = checks.map do |check|
65
- CheckstyleReport::CheckstyleError.new(
66
- level_for_report(check.check_report_status),
67
- check.message,
68
- check.path,
69
- 0,
70
- 0,
71
- check.check_name
72
- )
73
- end
74
- CheckstyleReport::CheckstyleReport.new(
75
- path,
76
- 'frb-checkstyle-report',
77
- errors
78
- ).create_report
79
- end
80
- # rubocop:enable Metrics/MethodLength
81
-
82
- def level_for_report(check_report_status)
83
- case check_report_status
84
- when CheckReportStatus::NORMAL
85
- CheckstyleReport::CheckstyleError::SAVERITY_NORMAL
86
- when CheckReportStatus::WARNING
87
- CheckstyleReport::CheckstyleError::SAVERITY_WARNING
88
- when CheckReportStatus::ERROR
89
- CheckstyleReport::CheckstyleError::SAVERITY_ERROR
90
- end
91
- end
92
- end
93
- end
1
+ require_relative './flutter_rb/project/project'
2
+ require_relative './flutter_rb/checks/plugin_directories_check'
3
+ require_relative './flutter_rb/checks/plugin_pubspec_check'
4
+ require_relative './flutter_rb/checks/plugin_gradle_check'
5
+ require_relative './flutter_rb/checks/plugin_podspec_check'
6
+ require_relative './flutter_rb/config/flutter_rb_config_initializer'
7
+
8
+ require_relative './checkstyle_report/checkstyle_report'
9
+
10
+ module FlutterRb
11
+ # Start FlutterRb checks
12
+ class FlutterRb
13
+ def start(path, with_report)
14
+ project = ProjectParser.new(path).project
15
+ if project.nil?
16
+ exit_with_no_project
17
+ else
18
+ check_project(
19
+ project,
20
+ path,
21
+ with_report
22
+ )
23
+ end
24
+ end
25
+
26
+ def exit_with_no_project
27
+ puts 'No project'
28
+ exit(-1)
29
+ end
30
+
31
+ # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
32
+ def check_project(project, path, with_report)
33
+ config_initializer = FlutterRbConfigInitializer.new
34
+ config_path = "#{path}/.flutter_rb.yaml"
35
+ config = File.exist?(config_path) ? config_initializer.parse(config_path) : config_initializer.default
36
+ checks = explore_project(
37
+ project,
38
+ config.flutter_checks,
39
+ config.android_checks,
40
+ config.ios_checks
41
+ )
42
+ checks.each { |check| puts check.print }
43
+ errors = checks.reject { |check| check.check_report_status == CheckReportStatus::NORMAL }
44
+ create_report(path, checks) if with_report
45
+ exit(errors.empty? ? 0 : -1)
46
+ end
47
+ # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
48
+
49
+ def explore_project(
50
+ project,
51
+ flutter_checks,
52
+ android_checks,
53
+ ios_checks
54
+ )
55
+ result = []
56
+ result += flutter_checks.map { |check| check.check(project) }
57
+ result += android_checks.map { |check| check.check(project) } unless project.android_folder.nil?
58
+ result += ios_checks.map { |check| check.check(project) } unless project.ios_folder.nil?
59
+ result
60
+ end
61
+
62
+ # rubocop:disable Metrics/MethodLength
63
+ def create_report(path, checks)
64
+ errors = checks.map do |check|
65
+ CheckstyleReport::CheckstyleError.new(
66
+ level_for_report(check.check_report_status),
67
+ check.message,
68
+ check.path,
69
+ 0,
70
+ 0,
71
+ check.check_name
72
+ )
73
+ end
74
+ CheckstyleReport::CheckstyleReport.new(
75
+ path,
76
+ 'frb-checkstyle-report',
77
+ errors
78
+ ).create_report
79
+ end
80
+ # rubocop:enable Metrics/MethodLength
81
+
82
+ def level_for_report(check_report_status)
83
+ case check_report_status
84
+ when CheckReportStatus::NORMAL
85
+ CheckstyleReport::CheckstyleError::SAVERITY_NORMAL
86
+ when CheckReportStatus::WARNING
87
+ CheckstyleReport::CheckstyleError::SAVERITY_WARNING
88
+ when CheckReportStatus::ERROR
89
+ CheckstyleReport::CheckstyleError::SAVERITY_ERROR
90
+ end
91
+ end
92
+ end
93
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flutter_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Fomchenkov
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-26 00:00:00.000000000 Z
11
+ date: 2022-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 1.13.6
47
+ version: 1.13.9
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 1.13.6
54
+ version: 1.13.9
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: minitest
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -94,35 +94,7 @@ dependencies:
94
94
  - - '='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '1.7'
97
- - !ruby/object:Gem::Dependency
98
- name: simplecov
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - '='
102
- - !ruby/object:Gem::Version
103
- version: 0.21.2
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - '='
109
- - !ruby/object:Gem::Version
110
- version: 0.21.2
111
- - !ruby/object:Gem::Dependency
112
- name: simplecov-lcov
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - '='
116
- - !ruby/object:Gem::Version
117
- version: 0.8.0
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - '='
123
- - !ruby/object:Gem::Version
124
- version: 0.8.0
125
- description:
97
+ description:
126
98
  email: artem.fomchenkov@outlook.com
127
99
  executables:
128
100
  - frb
@@ -152,11 +124,11 @@ files:
152
124
  - lib/flutter_rb/project/specs/ios/ios_folder.rb
153
125
  - lib/flutter_rb/project/specs/ios/podspec.rb
154
126
  - lib/flutter_rb/report/check_report.rb
155
- homepage: http://github.com/fartem/flutter-rb
127
+ homepage: http://github.com/flutter-rb/flutter-rb
156
128
  licenses:
157
129
  - MIT
158
130
  metadata: {}
159
- post_install_message:
131
+ post_install_message:
160
132
  rdoc_options: []
161
133
  require_paths:
162
134
  - lib
@@ -172,8 +144,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
144
  - !ruby/object:Gem::Version
173
145
  version: '0'
174
146
  requirements: []
175
- rubygems_version: 3.1.6
176
- signing_key:
147
+ rubygems_version: 3.0.3.1
148
+ signing_key:
177
149
  specification_version: 4
178
150
  summary: A Ruby tool for checking a Flutter plugin structure
179
151
  test_files: []