flutter_rb 0.8.3 → 1.0.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1db2ea3e3da806520668035df504eb714a412a6e7a9b4e457ac12eca7cd5af4b
4
- data.tar.gz: abdcbd7b3ff710447fa05ed62d04d7e13c81eb976d2872d31eff01e62d9f64f3
3
+ metadata.gz: c2085d887e060a00177dfef11e0a1219b7fa146064c315c409cf30ceccea494b
4
+ data.tar.gz: 7bbba89d78ed94e75e95f43180ae4f59449a04019b47f81e01e697174c482121
5
5
  SHA512:
6
- metadata.gz: 1817f3abe2db562095fcf0245ea166510ed67b203729a5e518fb1f53fdf6c31dec6fe4b69ef163000446e03505be3fedca683d3f97369bd3cd3a426a78f3dd02
7
- data.tar.gz: ccf54c91294479924bd310ef3af7986ddcd4efb337405e4f817bca2797cd56103836887661e647ea06fd1bd1729831c795b175605bedf9334f6e18c240ca3a94
6
+ metadata.gz: 9545fa39016e347701d743ebca162d70cbc599271db993f406d6262b9d1e72c120def9c47bbc2a9a7e3b941c490437558f4ecb285830becf1f6904265bd35413
7
+ data.tar.gz: 0070f79ba964624b33ece2ea1db4b8e3b9035a46be64d7f1d6f8da75f1abe5fc3ec0d2cbddc52c35d3cb8ffb8f6935d553374aa7dbeb0c3ce8fd5d9656a8a7eb
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2022 Artem Fomchenkov
1
+ Copyright (c) 2020-2023 Artem Fomchenkov
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- <img src="media/logo/ic_lib.png" height="100px">
1
+ <img src="media/logo/ic_lib.png" height="100px" alt="Project's logo">
2
2
 
3
3
  # flutter_rb
4
4
 
@@ -16,39 +16,39 @@ A tool for checking a Flutter plugin structure.
16
16
 
17
17
  Each issue has a `level` parameter that describes his significate level.
18
18
 
19
- | Level | Description |
20
- | --- | --- |
21
- | `NORMAL` | Issue was not found |
19
+ | Level | Description |
20
+ |-----------|---------------------------------------------|
21
+ | `NORMAL` | Issue was not found |
22
22
  | `WARNING` | Issue is not serious and cannot break build |
23
- | `ERROR` | Issue is critical and can break build |
23
+ | `ERROR` | Issue is critical and can break build |
24
24
 
25
25
  #### Flutter
26
26
 
27
- | Check | Description | Level |
28
- | --- | --- | --- |
29
- | `PluginDirectoriesCheck` | Check plugin directories structure in pubspec file. Example: if a Flutter plugin has only Android specific code but not contains iOS folder with description, then iOS build fails | `ERROR` |
30
- | `PluginPubspecNameCheck` | Check plugin name in pubspec file. Exists or not | `ERROR` |
31
- | `PluginPubspecDescriptionCheck` | Check plugin description in pubspec file. Exists or not | `WARNING` |
32
- | `PluginPubspecVersionCheck` | Check plugin version in pubspec. Exists or not | `ERROR` |
33
- | `PluginPubspecAuthorCheck` | Check plugin author in pubspec. Exists or not. `author` section deprecated in `pubspec.yaml` | `WARNING` |
34
- | `PluginPubspecHomepageCheck` | Check plugin homepage in pubspec. Exists or not | `ERROR` |
35
- | `PluginPubspecEffectiveDartCheck` | Check Flutter plugin Effective Dart depencency in pubspec file. Exists or not | `ERROR` |
27
+ | Check | Description | Level |
28
+ |-----------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------|
29
+ | `PluginDirectoriesCheck` | Check plugin directories structure in pubspec file. Example: if a Flutter plugin has only Android specific code but not contains iOS folder with description, then iOS build fails | `ERROR` |
30
+ | `PluginPubspecNameCheck` | Check plugin name in pubspec file. Exists or not | `ERROR` |
31
+ | `PluginPubspecDescriptionCheck` | Check plugin description in pubspec file. Exists or not | `WARNING` |
32
+ | `PluginPubspecVersionCheck` | Check plugin version in pubspec. Exists or not | `ERROR` |
33
+ | `PluginPubspecAuthorCheck` | Check plugin author in pubspec. Exists or not. `author` section deprecated in `pubspec.yaml` | `WARNING` |
34
+ | `PluginPubspecHomepageCheck` | Check plugin homepage in pubspec. Exists or not | `ERROR` |
35
+ | `PluginPubspecEffectiveDartCheck` | Check Flutter plugin Effective Dart depencency in pubspec file. Exists or not | `ERROR` |
36
36
 
37
37
  #### Android
38
38
 
39
- | Check | Description | Level |
40
- | --- | --- | --- |
41
- | `PluginGradleAndroidPackageCheck` | Validate that \android\ package not exists in Gradle project config (build.gradle file) | `ERROR` |
42
- | `PluginGradleVersionCheck` | Check plugin version in Gradle project config (build.gradle file). Version must be the same as plugin version in pubspec file | `WARNING` |
39
+ | Check | Description | Level |
40
+ |-----------------------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------|
41
+ | `PluginGradleAndroidPackageCheck` | Validate that \android\ package not exists in Gradle project config (build.gradle file) | `ERROR` |
42
+ | `PluginGradleVersionCheck` | Check plugin version in Gradle project config (build.gradle file). Version must be the same as plugin version in pubspec file | `WARNING` |
43
43
 
44
44
  #### iOS
45
45
 
46
- | Check | Description | Level |
47
- | --- | --- | --- |
48
- | `PluginPodspecNameCheck` | Check plugin name in podspec file. Exists or not | `WARNING` |
49
- | `PluginPodspecVersionCheck` | Check plugin version in podspec file. Exists or not | `WARNING` |
50
- | `PluginPodspecAuthorsCheck` | Check plugin's authors in podspec file. Exists or not | `ERROR` |
51
- | `PluginPodspecSourceCheck` | Check plugin iOS source path in podspec file. If Flutter plugin cannot contains iOS specific code, source path must be `'.'` | `ERROR` |
46
+ | Check | Description | Level |
47
+ |-----------------------------|------------------------------------------------------------------------------------------------------------------------------|-----------|
48
+ | `PluginPodspecNameCheck` | Check plugin name in podspec file. Exists or not | `WARNING` |
49
+ | `PluginPodspecVersionCheck` | Check plugin version in podspec file. Exists or not | `WARNING` |
50
+ | `PluginPodspecAuthorsCheck` | Check plugin's authors in podspec file. Exists or not | `ERROR` |
51
+ | `PluginPodspecSourceCheck` | Check plugin iOS source path in podspec file. If Flutter plugin cannot contains iOS specific code, source path must be `'.'` | `ERROR` |
52
52
 
53
53
  ## How to use
54
54
 
@@ -100,9 +100,9 @@ local_frb
100
100
 
101
101
  ### Arguments
102
102
 
103
- | Argument | Description |
104
- | --- | --- |
105
- | `--help` | Print help info |
103
+ | Argument | Description |
104
+ |-----------------------|--------------------------------------|
105
+ | `--help` | Print help info |
106
106
  | `--checkstyle-report` | Generate report in Checkstyle format |
107
107
 
108
108
 
data/bin/frb CHANGED
@@ -9,7 +9,7 @@ end
9
9
 
10
10
  if ARGV.include?('--help')
11
11
  puts "
12
- Available aruments:
12
+ Available arguments:
13
13
  * #{light_blue_text('--help')}: print help info
14
14
  * #{light_blue_text('--checkstyle-report')}: generate report in Checkstyle format
15
15
  "
@@ -27,7 +27,7 @@ module CheckstyleReport
27
27
  checks.each do |check|
28
28
  checkstyle_file = checkstyle_files[check.source]
29
29
  checkstyle_files[check.source] = [] if checkstyle_file.nil?
30
- checkstyle_files[check.source] += [check] if check.saverity != CheckstyleError::SAVERITY_NORMAL
30
+ checkstyle_files[check.source] += [check] if check.severity != CheckstyleError::SEVERITY_NORMAL
31
31
  end
32
32
  checkstyle_files
33
33
  end
@@ -44,7 +44,7 @@ module CheckstyleReport
44
44
  xml.error(
45
45
  line: error.line,
46
46
  column: error.column,
47
- saverity: error.saverity,
47
+ severity: error.severity,
48
48
  message: error.message,
49
49
  source: error.source
50
50
  )
@@ -63,20 +63,20 @@ module CheckstyleReport
63
63
 
64
64
  # Checkstyle error representation
65
65
  class CheckstyleError
66
- SAVERITY_NORMAL = 'normal'.freeze
67
- SAVERITY_WARNING = 'warning'.freeze
68
- SAVERITY_ERROR = 'error'.freeze
66
+ SEVERITY_NORMAL = 'normal'.freeze
67
+ SEVERITY_WARNING = 'warning'.freeze
68
+ SEVERITY_ERROR = 'error'.freeze
69
69
 
70
70
  # rubocop:disable Metrics/ParameterLists
71
71
  def initialize(
72
- saverity,
72
+ severity,
73
73
  message,
74
74
  source,
75
75
  line,
76
76
  column,
77
77
  name
78
78
  )
79
- @saverity = saverity
79
+ @severity = severity
80
80
  @message = message
81
81
  @source = source
82
82
  @line = line
@@ -85,6 +85,6 @@ module CheckstyleReport
85
85
  end
86
86
  # rubocop:enable Metrics/ParameterLists
87
87
 
88
- attr_reader :saverity, :message, :source, :line, :column, :name
88
+ attr_reader :severity, :message, :source, :line, :column, :name
89
89
  end
90
90
  end
@@ -3,14 +3,14 @@ module FlutterRb
3
3
  # Class provides default methods structure
4
4
  # All methods using for create reports
5
5
  class Check
6
- UNIMPLEMENTATION_ERROR = 'Error: missing method'.freeze
6
+ UNIMPLEMENTED_ERROR = 'Error: missing method'.freeze
7
7
 
8
8
  def name
9
- raise UNIMPLEMENTATION_ERROR
9
+ raise UNIMPLEMENTED_ERROR
10
10
  end
11
11
 
12
12
  def summary
13
- raise UNIMPLEMENTATION_ERROR
13
+ raise UNIMPLEMENTED_ERROR
14
14
  end
15
15
 
16
16
  def description
@@ -18,7 +18,7 @@ module FlutterRb
18
18
  end
19
19
 
20
20
  def check
21
- raise UNIMPLEMENTATION_ERROR
21
+ raise UNIMPLEMENTED_ERROR
22
22
  end
23
23
  end
24
24
  end
@@ -9,7 +9,7 @@ module FlutterRb
9
9
  end
10
10
 
11
11
  def podspec_parameter
12
- UNIMPLEMENTATION_ERROR
12
+ UNIMPLEMENTED_ERROR
13
13
  end
14
14
 
15
15
  def summary
@@ -9,7 +9,7 @@ module FlutterRb
9
9
  end
10
10
 
11
11
  def pubspec_parameter
12
- raise UNIMPLEMENTATION_ERROR
12
+ raise UNIMPLEMENTED_ERROR
13
13
  end
14
14
 
15
15
  def summary
data/lib/flutter_rb.rb CHANGED
@@ -82,11 +82,13 @@ module FlutterRb
82
82
  def level_for_report(check_report_status)
83
83
  case check_report_status
84
84
  when CheckReportStatus::NORMAL
85
- CheckstyleReport::CheckstyleError::SAVERITY_NORMAL
85
+ CheckstyleReport::CheckstyleError::SEVERITY_NORMAL
86
86
  when CheckReportStatus::WARNING
87
- CheckstyleReport::CheckstyleError::SAVERITY_WARNING
87
+ CheckstyleReport::CheckstyleError::SEVERITY_WARNING
88
88
  when CheckReportStatus::ERROR
89
- CheckstyleReport::CheckstyleError::SAVERITY_ERROR
89
+ CheckstyleReport::CheckstyleError::SEVERITY_ERROR
90
+ else
91
+ throw 'Unknown CheckReportStatus'
90
92
  end
91
93
  end
92
94
  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.3
4
+ version: 1.0.0
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-11-05 00:00:00.000000000 Z
11
+ date: 2023-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - '='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '1.7'
97
- description:
97
+ description:
98
98
  email: artem.fomchenkov@outlook.com
99
99
  executables:
100
100
  - frb
@@ -124,11 +124,11 @@ files:
124
124
  - lib/flutter_rb/project/specs/ios/ios_folder.rb
125
125
  - lib/flutter_rb/project/specs/ios/podspec.rb
126
126
  - lib/flutter_rb/report/check_report.rb
127
- homepage: http://github.com/flutter-rb/flutter-rb
127
+ homepage: https://github.com/flutter-rb/flutter-rb
128
128
  licenses:
129
129
  - MIT
130
130
  metadata: {}
131
- post_install_message:
131
+ post_install_message:
132
132
  rdoc_options: []
133
133
  require_paths:
134
134
  - lib
@@ -137,15 +137,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - ">="
139
139
  - !ruby/object:Gem::Version
140
- version: 2.7.0
140
+ version: '3.0'
141
141
  required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - ">="
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  requirements: []
147
- rubygems_version: 3.0.3.1
148
- signing_key:
147
+ rubygems_version: 3.4.10
148
+ signing_key:
149
149
  specification_version: 4
150
150
  summary: A Ruby tool for checking a Flutter plugin structure
151
151
  test_files: []