flutter_rb 1.0.1 → 1.1.1

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,11 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
4
  # FlutterRb configuration representation from config in Flutter plugin
3
5
  class FlutterRbConfig
4
- def initialize(
5
- flutter_checks,
6
- android_checks,
7
- ios_checks
8
- )
6
+ # @param {Check[]} flutter_checks
7
+ # @param {Check[]} android_checks
8
+ # @param {Check[]} ios_checks
9
+ def initialize(flutter_checks, android_checks, ios_checks)
9
10
  @flutter_checks = flutter_checks
10
11
  @android_checks = android_checks
11
12
  @ios_checks = ios_checks
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './flutter_rb_config'
2
4
  require_relative '../checks/plugin_directories_check'
3
5
 
@@ -13,7 +15,8 @@ module FlutterRb
13
15
  PluginPubspecVersionCheck.new,
14
16
  PluginPubspecAuthorCheck.new,
15
17
  PluginPubspecHomepageCheck.new,
16
- PluginPubspecEffectiveDartCheck.new
18
+ PluginPubspecLintsCheck.new,
19
+ PluginPubspecFlutterLintsCheck.new
17
20
  ].freeze
18
21
 
19
22
  ANDROID_CHECKS = [
@@ -28,23 +31,42 @@ module FlutterRb
28
31
  PluginPodspecSourceCheck.new
29
32
  ].freeze
30
33
 
31
- # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
34
+ # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
35
+ # @param {String} path
36
+ # @return {FlutterRbConfig}
32
37
  def parse(path)
33
- config = YAML.load_file(path)['include']
34
- flutter_checks = []
35
- flutter_checks += config['flutter'].map { |check| Object.const_get("FlutterRb::#{check}").new } unless config['flutter'].nil?
36
- android_checks = []
37
- android_checks += config['android'].map { |check| Object.const_get("FlutterRb::#{check}").new } unless config['android'].nil?
38
- ios_checks = []
39
- ios_checks += config['ios'].map { |check| Object.const_get("FlutterRb::#{check}").new } unless config['ios'].nil?
38
+ config = YAML.load_file(path)
39
+
40
+ exclude_flutter_checks = ::Set.new
41
+ exclude_android_checks = ::Set.new
42
+ exclude_ios_checks = ::Set.new
43
+
44
+ unless config.nil?
45
+ exclude_checks = YAML.load_file(path)['exclude']
46
+
47
+ unless exclude_checks['flutter'].nil?
48
+ exclude_flutter_checks += exclude_checks['flutter'].map { |check| "FlutterRb::#{check}" }
49
+ end
50
+
51
+ unless exclude_checks['android'].nil?
52
+ exclude_android_checks += exclude_checks['android'].map { |check| "FlutterRb::#{check}" }
53
+ end
54
+
55
+ unless exclude_checks['ios'].nil?
56
+ exclude_ios_checks += exclude_checks['ios'].map { |check| "FlutterRb::#{check}" }
57
+ end
58
+ end
59
+
40
60
  FlutterRbConfig.new(
41
- flutter_checks.empty? ? FLUTTER_CHECKS : flutter_checks,
42
- android_checks.empty? ? ANDROID_CHECKS : android_checks,
43
- ios_checks.empty? ? IOS_CHECKS : ios_checks
61
+ FLUTTER_CHECKS.reject { |check| exclude_flutter_checks&.include?(check.class.name) },
62
+ ANDROID_CHECKS.reject { |check| exclude_android_checks&.include?(check.class.name) },
63
+ IOS_CHECKS.reject { |check| exclude_ios_checks&.include?(check.class.name) }
44
64
  )
45
65
  end
46
- # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
47
66
 
67
+ # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
68
+
69
+ # @return {FlutterRbConfig}
48
70
  def default
49
71
  FlutterRbConfig.new(
50
72
  FLUTTER_CHECKS,
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './specs/flutter/pubspec'
2
4
  require_relative './specs/flutter/dev_dependency'
3
5
  require_relative './specs/flutter/platform_plugin'
@@ -10,12 +12,11 @@ require 'yaml'
10
12
  module FlutterRb
11
13
  # Project representation
12
14
  class Project
13
- def initialize(
14
- path,
15
- pubspec,
16
- android_folder,
17
- ios_folder
18
- )
15
+ # @param {String} path
16
+ # @param {Pubspec} pubspec
17
+ # @param {AndroidFolder} android_folder
18
+ # @param {IOSFolder} ios_folder
19
+ def initialize(path, pubspec, android_folder, ios_folder)
19
20
  @path = path
20
21
  @pubspec = pubspec
21
22
  @android_folder = android_folder
@@ -27,16 +28,19 @@ module FlutterRb
27
28
 
28
29
  # Flutter plugin project parser
29
30
  class ProjectParser
31
+ # @param {String} path
30
32
  def initialize(path)
31
33
  @path = path
32
34
  end
33
35
 
36
+ # @return {Project}
34
37
  def project
35
38
  File.exist?("#{@path}/pubspec.yaml") ? parse_project : nil
36
39
  end
37
40
 
38
41
  private
39
42
 
43
+ # @return {Project}
40
44
  def parse_project
41
45
  pubspec_path = "#{@path}/pubspec.yaml"
42
46
  android_path = "#{@path}/android"
@@ -1,8 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './gradle'
2
4
 
3
5
  module FlutterRb
4
6
  # Android project representation
5
7
  class AndroidFolder
8
+ # @param {String} path
6
9
  def initialize(path)
7
10
  @path = path
8
11
  @gradle = GradleParser.new(@path).parse
@@ -1,8 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'json'
2
4
 
3
5
  module FlutterRb
4
6
  # Gradle representation
5
7
  class Gradle
8
+ # @param {String} path
9
+ # @param {String} version
6
10
  def initialize(path, version)
7
11
  @path = path
8
12
  @version = version
@@ -13,10 +17,12 @@ module FlutterRb
13
17
 
14
18
  # Gradle parser
15
19
  class GradleParser
20
+ # @param {String} path
16
21
  def initialize(path)
17
22
  @path = path
18
23
  end
19
24
 
25
+ # @return {Gradle}
20
26
  def parse
21
27
  `gradle -p #{@path} -q prepareInfo`
22
28
  info_file = File.read "#{@path}/flutter_rb_gradle_plugin_output.json"
@@ -1,6 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
4
  # Dev dependency, contains name and version
3
5
  class DevDependency
6
+ # @param {String} name
7
+ # @param {String} version
4
8
  def initialize(name, version)
5
9
  @name = name
6
10
  @version = version
@@ -1,6 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
4
  # Flutter plugin, contains platform, package and plugin class
3
5
  class PlatformPlugin
6
+ # @param {String} platform
7
+ # @param {String} package
8
+ # @param {String} plugin_class
4
9
  def initialize(platform, package, plugin_class)
5
10
  @platform = platform
6
11
  @package = package
@@ -12,7 +17,7 @@ module FlutterRb
12
17
 
13
18
  # Supported platforms for this tool
14
19
  class Platform
15
- ANDROID = 'android'.freeze
16
- IOS = 'ios'.freeze
20
+ ANDROID = 'android'
21
+ IOS = 'ios'
17
22
  end
18
23
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './pubspec_info'
2
4
  require_relative './dev_dependency'
3
5
  require_relative './platform_plugin'
@@ -5,12 +7,11 @@ require_relative './platform_plugin'
5
7
  module FlutterRb
6
8
  # pubspec.yaml representation
7
9
  class Pubspec
8
- def initialize(
9
- path,
10
- pubspec_info,
11
- dev_dependencies,
12
- platform_plugins
13
- )
10
+ # @param {String} path
11
+ # @param {PubspecInfo} pubspec_info
12
+ # @param {DevDependency[]} dev_dependencies
13
+ # @param {PlatformPlugin[]} platform_plugins
14
+ def initialize(path, pubspec_info, dev_dependencies, platform_plugins)
14
15
  @path = path
15
16
  @pubspec_info = pubspec_info
16
17
  @dev_dependencies = dev_dependencies
@@ -22,11 +23,14 @@ module FlutterRb
22
23
 
23
24
  # pubspec.yaml parser
24
25
  class PubspecParser
26
+ # @param {String} path
27
+ # @param {Pubspec} pubspec
25
28
  def initialize(path, pubspec)
26
29
  @path = path
27
30
  @pubspec = pubspec
28
31
  end
29
32
 
33
+ # @return {Pubspec}
30
34
  def parse
31
35
  Pubspec.new(
32
36
  @path,
@@ -36,6 +40,8 @@ module FlutterRb
36
40
  )
37
41
  end
38
42
 
43
+ # @param {Pubspec}
44
+ # @return {PubspecInfo}
39
45
  def pubspec_info(pubspec)
40
46
  PubspecInfo.new(
41
47
  pubspec['name'],
@@ -46,6 +52,8 @@ module FlutterRb
46
52
  )
47
53
  end
48
54
 
55
+ # @param {Pubspec} pubspec
56
+ # @return {DevDependency[]}
49
57
  def dev_dependencies(pubspec)
50
58
  pubspec['dev_dependencies']&.map do |dev_dependency|
51
59
  DevDependency.new(
@@ -55,6 +63,8 @@ module FlutterRb
55
63
  end
56
64
  end
57
65
 
66
+ # @param {Pubspec} pubspec
67
+ # @return {PlatformPlugin[]}
58
68
  def platform_plugins(pubspec)
59
69
  pubspec.dig('flutter', 'plugin', 'platforms')&.map do |platform_plugin|
60
70
  plugin_info = platform_plugin.last
@@ -1,13 +1,14 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
4
  # Flutter plugin info from pubspec.yaml
3
5
  class PubspecInfo
4
- def initialize(
5
- name,
6
- description,
7
- version,
8
- author,
9
- homepage
10
- )
6
+ # @param {String} name
7
+ # @param {String} description
8
+ # @param {String} version
9
+ # @param {String} author
10
+ # @param {String} homepage
11
+ def initialize(name, description, version, author, homepage)
11
12
  @name = name
12
13
  @description = description
13
14
  @version = version
@@ -1,8 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './podspec'
2
4
 
3
5
  module FlutterRb
4
6
  # iOS representation
5
7
  class IOSFolder
8
+ # @param {String} path
9
+ # @param {Pubspec} pubspec
6
10
  def initialize(path, pubspec)
7
11
  @path = path
8
12
  podspec_path = "#{path}/#{pubspec.pubspec_info.name}.podspec"
@@ -1,15 +1,16 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'cocoapods'
2
4
 
3
5
  module FlutterRb
4
6
  # Podspec representation
5
7
  class Podspec
6
- def initialize(
7
- path,
8
- name,
9
- version,
10
- authors,
11
- source
12
- )
8
+ # @param {String} path
9
+ # @param {String} name
10
+ # @param {String} version
11
+ # @param {String[]} authors
12
+ # @param {String} source
13
+ def initialize(path, name, version, authors, source)
13
14
  @path = path
14
15
  @name = name
15
16
  @version = version
@@ -22,10 +23,12 @@ module FlutterRb
22
23
 
23
24
  # Podspec parser
24
25
  class PodspecParser
26
+ # @param {String} path
25
27
  def initialize(path)
26
28
  @path = path
27
29
  end
28
30
 
31
+ # @return {Podspec}
29
32
  def parse
30
33
  podspec = Pod::Specification.from_file(@path)
31
34
  @podspec = Podspec.new(
@@ -1,20 +1,23 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'colorize'
2
4
 
3
5
  module FlutterRb
4
6
  # Check report
5
7
  class CheckReport
6
- def initialize(
7
- check_name,
8
- check_report_status,
9
- message,
10
- path
11
- )
8
+ # @param {String} check_name
9
+ # @param {CheckReportStatus} check_report_status
10
+ # @param {String} message
11
+ # @param {String} path
12
+ def initialize(check_name, check_report_status, message, path)
12
13
  @check_name = check_name
13
14
  @check_report_status = check_report_status
14
15
  @message = message
15
16
  @path = path
16
17
  end
17
18
 
19
+ # @param {Bool} colorize
20
+ # @return {String}
18
21
  def print(colorize: true)
19
22
  if colorize
20
23
  status_color = color_for_report_status(@check_report_status)
@@ -24,6 +27,8 @@ module FlutterRb
24
27
  end
25
28
  end
26
29
 
30
+ # @param {CheckReportStatus} check_report_status
31
+ # @return {Presenter}
27
32
  def color_for_report_status(check_report_status)
28
33
  case check_report_status
29
34
  when CheckReportStatus::NORMAL
@@ -32,6 +37,8 @@ module FlutterRb
32
37
  :yellow
33
38
  when CheckReportStatus::ERROR
34
39
  :red
40
+ else
41
+ :blue
35
42
  end
36
43
  end
37
44
 
@@ -40,8 +47,8 @@ module FlutterRb
40
47
 
41
48
  # Check report status
42
49
  class CheckReportStatus
43
- NORMAL = 'normal'.freeze
44
- WARNING = 'warning'.freeze
45
- ERROR = 'error'.freeze
50
+ NORMAL = 'normal'
51
+ WARNING = 'warning'
52
+ ERROR = 'error'
46
53
  end
47
54
  end
data/lib/flutter_rb.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './flutter_rb/project/project'
2
4
  require_relative './flutter_rb/checks/plugin_directories_check'
3
5
  require_relative './flutter_rb/checks/plugin_pubspec_check'
@@ -8,8 +10,11 @@ require_relative './flutter_rb/config/flutter_rb_config_initializer'
8
10
  require_relative './checkstyle_report/checkstyle_report'
9
11
 
10
12
  module FlutterRb
11
- # Start FlutterRb checks
13
+ # FlutterRb entry
12
14
  class FlutterRb
15
+ # Start FlutterRb checks
16
+ # @param {String} path
17
+ # @param {Boolean} with_report
13
18
  def start(path, with_report)
14
19
  project = ProjectParser.new(path).project
15
20
  if project.nil?
@@ -23,12 +28,16 @@ module FlutterRb
23
28
  end
24
29
  end
25
30
 
31
+ # @return {Void}
26
32
  def exit_with_no_project
27
33
  puts 'No project'
28
34
  exit(-1)
29
35
  end
30
36
 
31
37
  # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
38
+ # @param {Project} project
39
+ # @param {String} path
40
+ # @param {Bool} with_report
32
41
  def check_project(project, path, with_report)
33
42
  config_initializer = FlutterRbConfigInitializer.new
34
43
  config_path = "#{path}/.flutter_rb.yaml"
@@ -40,26 +49,44 @@ module FlutterRb
40
49
  config.ios_checks
41
50
  )
42
51
  checks.each { |check| puts check.print }
43
- errors = checks.reject { |check| check.check_report_status == CheckReportStatus::NORMAL }
52
+ errors = checks.reject do |check|
53
+ check.check_report_status == CheckReportStatus::NORMAL
54
+ end
44
55
  create_report(path, checks) if with_report
45
56
  exit(errors.empty? ? 0 : -1)
46
57
  end
58
+
47
59
  # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
48
60
 
49
- def explore_project(
50
- project,
51
- flutter_checks,
52
- android_checks,
53
- ios_checks
54
- )
61
+ # rubocop:disable Metrics/MethodLength
62
+ # @param {Project} project
63
+ # @param {Check[]} flutter_checks
64
+ # @param {Check[]} android_checks
65
+ # @param {Check[]} ios_checks
66
+ def explore_project(project, flutter_checks, android_checks, ios_checks)
55
67
  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?
68
+ result += flutter_checks.map do |check|
69
+ check.check(project)
70
+ end
71
+ unless project.android_folder.nil?
72
+ result += android_checks.map do |check|
73
+ check.check(project)
74
+ end
75
+ end
76
+ unless project.ios_folder.nil?
77
+ result += ios_checks.map do |check|
78
+ check.check(project)
79
+ end
80
+ end
59
81
  result
60
82
  end
61
83
 
84
+ # rubocop:enable Metrics/MethodLength
85
+
62
86
  # rubocop:disable Metrics/MethodLength
87
+ # @param {String} path
88
+ # @param {Check[]} checks
89
+ # @return {CheckstyleReport}
63
90
  def create_report(path, checks)
64
91
  errors = checks.map do |check|
65
92
  CheckstyleReport::CheckstyleError.new(
@@ -77,8 +104,11 @@ module FlutterRb
77
104
  errors
78
105
  ).create_report
79
106
  end
107
+
80
108
  # rubocop:enable Metrics/MethodLength
81
109
 
110
+ # @param {CheckReportStatus} check_report_status
111
+ # @return {CheckstyleReport}
82
112
  def level_for_report(check_report_status)
83
113
  case check_report_status
84
114
  when CheckReportStatus::NORMAL
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: 1.0.1
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Fomchenkov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-22 00:00:00.000000000 Z
11
+ date: 2023-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
40
  version: 0.8.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: dry-cli
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 1.0.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.0.0
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: nokogiri
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -94,6 +108,20 @@ dependencies:
94
108
  - - '='
95
109
  - !ruby/object:Gem::Version
96
110
  version: '1.7'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '='
116
+ - !ruby/object:Gem::Version
117
+ version: 0.22.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.22.0
97
125
  description:
98
126
  email: artem.fomchenkov@outlook.com
99
127
  executables:
@@ -102,8 +130,6 @@ extensions: []
102
130
  extra_rdoc_files:
103
131
  - README.md
104
132
  files:
105
- - CODE_OF_CONDUCT.md
106
- - COMMIT_CONVENTION.md
107
133
  - LICENSE
108
134
  - README.md
109
135
  - bin/frb
data/CODE_OF_CONDUCT.md DELETED
@@ -1,76 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, sex characteristics, gender identity and expression,
9
- level of experience, education, socio-economic status, nationality, personal
10
- appearance, race, religion, or sexual identity and orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at jaman.smlnsk@gmail.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
-
73
- [homepage]: https://www.contributor-covenant.org
74
-
75
- For answers to common questions about this code of conduct, see
76
- https://www.contributor-covenant.org/faq