flutter_rb 1.0.2 → 1.2.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.
@@ -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'
@@ -8,47 +10,69 @@ require_relative './specs/ios/ios_folder'
8
10
  require 'yaml'
9
11
 
10
12
  module FlutterRb
11
- # Project representation
13
+ # Represents a Flutter project.
12
14
  class Project
13
- # @param {String} path
14
- # @param {Pubspec} pubspec
15
- # @param {AndroidFolder} android_folder
16
- # @param {IOSFolder} ios_folder
17
- def initialize(
18
- path,
19
- pubspec,
20
- android_folder,
21
- ios_folder
22
- )
15
+ # Initializes a new instance of Project.
16
+ #
17
+ # @param path [String] The path to the Flutter project.
18
+ # @param pubspec [Pubspec] The parsed pubspec of the project.
19
+ # @param android_folder [AndroidFolder, nil] The parsed Android folder of the project.
20
+ # @param ios_folder [IOSFolder, nil] The parsed iOS folder of the project.
21
+ def initialize(path, pubspec, android_folder, ios_folder)
23
22
  @path = path
24
23
  @pubspec = pubspec
25
24
  @android_folder = android_folder
26
25
  @ios_folder = ios_folder
27
26
  end
28
27
 
29
- attr_accessor :path, :pubspec, :android_folder, :ios_folder
28
+ # Accessor for the path of the project.
29
+ #
30
+ # @return [String] The path of the project.
31
+ attr_accessor :path
32
+
33
+ # Accessor for the pubspec of the project.
34
+ #
35
+ # @return [Pubspec] The pubspec of the project.
36
+ attr_accessor :pubspec
37
+
38
+ # Accessor for the Android folder of the project.
39
+ #
40
+ # @return [AndroidFolder] The Android folder of the project.
41
+ attr_accessor :android_folder
42
+
43
+ # Accessor for the iOS folder of the project.
44
+ #
45
+ # @return [IOSFolder] The iOS folder of the project.
46
+ attr_accessor :ios_folder
30
47
  end
31
48
 
32
- # Flutter plugin project parser
49
+ # Class to parse and represent a Flutter project.
33
50
  class ProjectParser
34
- # @param {String} path
51
+ # Initializes a new instance of ProjectParser.
52
+ #
53
+ # @param path [String] The path to the Flutter project.
35
54
  def initialize(path)
36
55
  @path = path
37
56
  end
38
57
 
39
- # @return {Project}
58
+ # Parses the Flutter project at the given path and returns a Project object.
59
+ #
60
+ # @return [Project, nil] A Project object if the project exists and can be parsed, otherwise nil.
40
61
  def project
41
62
  File.exist?("#{@path}/pubspec.yaml") ? parse_project : nil
42
63
  end
43
64
 
44
65
  private
45
66
 
46
- # @return {Project}
67
+ # Parses the project at the given path and returns a Project object.
68
+ #
69
+ # @return [Project] A Project object representing the parsed project.
47
70
  def parse_project
48
71
  pubspec_path = "#{@path}/pubspec.yaml"
49
72
  android_path = "#{@path}/android"
50
73
  ios_path = "#{@path}/ios"
51
74
  pubspec = PubspecParser.new(pubspec_path, YAML.load_file(pubspec_path)).parse
75
+
52
76
  Project.new(
53
77
  @path,
54
78
  pubspec,
@@ -1,14 +1,27 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './gradle'
2
4
 
3
5
  module FlutterRb
4
- # Android project representation
6
+ # Represents an Android project folder.
5
7
  class AndroidFolder
6
- # @param {String} path
8
+ # Initializes a new instance of AndroidFolder.
9
+ #
10
+ # @param path [String] The path to the Android project folder.
7
11
  def initialize(path)
8
12
  @path = path
13
+ # Parse the Gradle build file and store the parsed data.
9
14
  @gradle = GradleParser.new(@path).parse
10
15
  end
11
16
 
12
- attr_reader :path, :gradle
17
+ # Returns the path to the Android project folder.
18
+ #
19
+ # @return [String] The path to the Android project folder.
20
+ attr_reader :path
21
+
22
+ # Returns the parsed Gradle build file data.
23
+ #
24
+ # @return [GradleParser] The parsed Gradle build file data.
25
+ attr_reader :gradle
13
26
  end
14
27
  end
@@ -1,31 +1,57 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'json'
2
4
 
3
5
  module FlutterRb
4
- # Gradle representation
6
+ # Represents a Gradle project.
5
7
  class Gradle
6
- # @param {String} path
7
- # @param {String} version
8
+ # Initializes a new Gradle instance.
9
+ #
10
+ # @param path [String] The path to the Gradle project.
11
+ # @param version [String] The version of Gradle being used.
8
12
  def initialize(path, version)
9
13
  @path = path
10
14
  @version = version
11
15
  end
12
16
 
13
- attr_reader :path, :version
17
+ # Returns the path to the Gradle project.
18
+ #
19
+ # @return [String] The path to the Gradle project.
20
+ attr_reader :path
21
+
22
+ # Returns the version of Gradle being used.
23
+ #
24
+ # @return [String] The version of Gradle being used.
25
+ attr_reader :version
14
26
  end
15
27
 
16
- # Gradle parser
28
+ # This class is responsible for parsing Gradle project information.
17
29
  class GradleParser
18
- # @param {String} path
30
+ # Initializes a new GradleParser instance.
31
+ #
32
+ # @param path [String] The path to the Gradle project.
19
33
  def initialize(path)
20
34
  @path = path
21
35
  end
22
36
 
23
- # @return {Gradle}
37
+ # Parses the Gradle project information.
38
+ #
39
+ # Executes the 'prepareInfo' task in the Gradle project and reads the generated JSON file.
40
+ # If the JSON file does not exist, it raises an error.
41
+ #
42
+ # @return [Gradle] An instance of Gradle with the parsed information.
24
43
  def parse
25
- `gradle -p #{@path} -q prepareInfo`
26
- info_file = File.read "#{@path}/flutter_rb_gradle_plugin_output.json"
27
- info = JSON.parse info_file
28
- Gradle.new(@path, info['version'])
44
+ `gradle -p #{@path} -q prepareInfo` # Execute the 'prepareInfo' task in the Gradle project
45
+ info_file_path = "#{@path}/flutter_rb_gradle_plugin_output.json" # Path to the JSON file
46
+
47
+ unless File.exist?(info_file_path) # Check if the JSON file exists
48
+ raise "Could not find Gradle info file at #{info_file_path}" # Raise an error if the JSON file does not exist
49
+ end
50
+
51
+ info_file = File.read info_file_path # Read the JSON file
52
+ info = JSON.parse info_file # Parse the JSON content
53
+
54
+ Gradle.new(@path, info['version']) # Create a new Gradle instance with the parsed information
29
55
  end
30
56
  end
31
57
  end
@@ -1,13 +1,25 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
- # Dev dependency, contains name and version
4
+ # Represents a development dependency in a Flutter project.
3
5
  class DevDependency
4
- # @param {String} name
5
- # @param {String} version
6
+ # Initializes a new instance of DevDependency.
7
+ #
8
+ # @param name [String] The name of the development dependency.
9
+ # @param version [String] The version of the development dependency.
6
10
  def initialize(name, version)
7
11
  @name = name
8
12
  @version = version
9
13
  end
10
14
 
11
- attr_reader :name, :version
15
+ # Returns the name of the development dependency.
16
+ #
17
+ # @return [String] The name of the development dependency.
18
+ attr_reader :name
19
+
20
+ # Returns the version of the development dependency.
21
+ #
22
+ # @return [String] The version of the development dependency.
23
+ attr_reader :version
12
24
  end
13
25
  end
@@ -1,21 +1,41 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
- # Flutter plugin, contains platform, package and plugin class
4
+ # Represents a Flutter platform plugin.
3
5
  class PlatformPlugin
4
- # @param {String} platform
5
- # @param {String} package
6
- # @param {String} plugin_class
6
+ # Initializes a new instance of PlatformPlugin.
7
+ #
8
+ # @param platform [String] The platform this plugin is for.
9
+ # @param package [String] The package name of the plugin.
10
+ # @param plugin_class [String] The class name of the plugin.
7
11
  def initialize(platform, package, plugin_class)
8
12
  @platform = platform
9
13
  @package = package
10
14
  @plugin_class = plugin_class
11
15
  end
12
16
 
13
- attr_reader :platform, :package, :plugin_class
17
+ # Returns the platform this plugin is for.
18
+ #
19
+ # @return [String] The platform.
20
+ attr_reader :platform
21
+
22
+ # Returns the package name of the plugin.
23
+ #
24
+ # @return [String] The package name.
25
+ attr_reader :package
26
+
27
+ # Returns the class name of the plugin.
28
+ #
29
+ # @return [String] The class name.
30
+ attr_reader :plugin_class
14
31
  end
15
32
 
16
- # Supported platforms for this tool
33
+ # Represents a platform in Flutter.
17
34
  class Platform
18
- ANDROID = 'android'.freeze
19
- IOS = 'ios'.freeze
35
+ # The Android platform constant.
36
+ ANDROID = 'android'
37
+
38
+ # The iOS platform constant.
39
+ IOS = 'ios'
20
40
  end
21
41
  end
@@ -1,39 +1,60 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './pubspec_info'
2
4
  require_relative './dev_dependency'
3
5
  require_relative './platform_plugin'
4
6
 
5
7
  module FlutterRb
6
- # pubspec.yaml representation
8
+ # Represents a parsed pubspec.yaml file.
7
9
  class Pubspec
8
- # @param {String} path
9
- # @param {PubspecInfo} pubspec_info
10
- # @param {DevDependency[]} dev_dependencies
11
- # @param {PlatformPlugin[]} platform_plugins
12
- def initialize(
13
- path,
14
- pubspec_info,
15
- dev_dependencies,
16
- platform_plugins
17
- )
10
+ # Initializes a new instance of Pubspec.
11
+ #
12
+ # @param path [String] The path to the pubspec.yaml file.
13
+ # @param pubspec_info [PubspecInfo] The parsed information from the pubspec.yaml file.
14
+ # @param dev_dependencies [Array<DevDependency>] An array of parsed dev dependencies.
15
+ # @param platform_plugins [Array<PlatformPlugin>] An array of parsed platform plugins.
16
+ def initialize(path, pubspec_info, dev_dependencies, platform_plugins)
18
17
  @path = path
19
18
  @pubspec_info = pubspec_info
20
19
  @dev_dependencies = dev_dependencies
21
20
  @platform_plugins = platform_plugins
22
21
  end
23
22
 
24
- attr_reader :path, :pubspec_info, :dev_dependencies, :platform_plugins
23
+ # Returns the path to the pubspec.yaml file.
24
+ #
25
+ # @return [String] The path to the pubspec.yaml file.
26
+ attr_reader :path
27
+
28
+ # Returns the parsed information from the pubspec.yaml file.
29
+ #
30
+ # @return [PubspecInfo] The parsed information from the pubspec.yaml file.
31
+ attr_reader :pubspec_info
32
+
33
+ # Returns an array of parsed dev dependencies.
34
+ #
35
+ # @return [Array<DevDependency>] An array of parsed dev dependencies.
36
+ attr_reader :dev_dependencies
37
+
38
+ # Returns an array of parsed platform plugins.
39
+ #
40
+ # @return [Array<PlatformPlugin>] An array of parsed platform plugins.
41
+ attr_reader :platform_plugins
25
42
  end
26
43
 
27
- # pubspec.yaml parser
44
+ # This class is responsible for parsing a pubspec.yaml file and creating a Pubspec object.
28
45
  class PubspecParser
29
- # @param {String} path
30
- # @param {Pubspec} pubspec
46
+ # Initializes a new instance of PubspecParser.
47
+ #
48
+ # @param path [String] The path to the pubspec.yaml file.
49
+ # @param pubspec [Hash] The parsed pubspec.yaml file as a Hash.
31
50
  def initialize(path, pubspec)
32
51
  @path = path
33
52
  @pubspec = pubspec
34
53
  end
35
54
 
36
- # @return {Pubspec}
55
+ # Parses the pubspec.yaml file and creates a Pubspec object.
56
+ #
57
+ # @return [Pubspec] The parsed Pubspec object.
37
58
  def parse
38
59
  Pubspec.new(
39
60
  @path,
@@ -43,8 +64,10 @@ module FlutterRb
43
64
  )
44
65
  end
45
66
 
46
- # @param {Pubspec}
47
- # @return {PubspecInfo}
67
+ # Parses the pubspec.yaml file and extracts the general information.
68
+ #
69
+ # @param pubspec [Hash] The parsed pubspec.yaml file as a Hash.
70
+ # @return [PubspecInfo] The parsed PubspecInfo object.
48
71
  def pubspec_info(pubspec)
49
72
  PubspecInfo.new(
50
73
  pubspec['name'],
@@ -55,8 +78,10 @@ module FlutterRb
55
78
  )
56
79
  end
57
80
 
58
- # @param {Pubspec} pubspec
59
- # @return {DevDependency[]}
81
+ # Parses the pubspec.yaml file and extracts the dev dependencies.
82
+ #
83
+ # @param pubspec [Hash] The parsed pubspec.yaml file as a Hash.
84
+ # @return [Array<DevDependency>] An array of parsed DevDependency objects.
60
85
  def dev_dependencies(pubspec)
61
86
  pubspec['dev_dependencies']&.map do |dev_dependency|
62
87
  DevDependency.new(
@@ -66,11 +91,14 @@ module FlutterRb
66
91
  end
67
92
  end
68
93
 
69
- # @param {Pubspec} pubspec
70
- # @return {PlatformPlugin[]}
94
+ # Parses the pubspec.yaml file and extracts the platform plugins.
95
+ #
96
+ # @param pubspec [Hash] The parsed pubspec.yaml file as a Hash.
97
+ # @return [Array<PlatformPlugin>] An array of parsed PlatformPlugin objects.
71
98
  def platform_plugins(pubspec)
72
99
  pubspec.dig('flutter', 'plugin', 'platforms')&.map do |platform_plugin|
73
100
  plugin_info = platform_plugin.last
101
+
74
102
  PlatformPlugin.new(
75
103
  plugin_info['package'],
76
104
  plugin_info['pluginClass'],
@@ -1,18 +1,16 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
- # Flutter plugin info from pubspec.yaml
4
+ # Represents the information contained in a Flutter project's pubspec.yaml file.
3
5
  class PubspecInfo
4
- # @param {String} name
5
- # @param {String} description
6
- # @param {String} version
7
- # @param {String} author
8
- # @param {String} homepage
9
- def initialize(
10
- name,
11
- description,
12
- version,
13
- author,
14
- homepage
15
- )
6
+ # Initializes a new instance of PubspecInfo.
7
+ #
8
+ # @param name [String] The name of the Flutter project.
9
+ # @param description [String] A brief description of the Flutter project.
10
+ # @param version [String] The version number of the Flutter project.
11
+ # @param author [String] The author of the Flutter project.
12
+ # @param homepage [String] The homepage URL of the Flutter project.
13
+ def initialize(name, description, version, author, homepage)
16
14
  @name = name
17
15
  @description = description
18
16
  @version = version
@@ -20,6 +18,24 @@ module FlutterRb
20
18
  @homepage = homepage
21
19
  end
22
20
 
23
- attr_reader :name, :description, :version, :author, :homepage
21
+ # Returns the name of the Flutter project.
22
+ # @return [String] The name of the Flutter project.
23
+ attr_reader :name
24
+
25
+ # Returns the brief description of the Flutter project.
26
+ # @return [String] The brief description of the Flutter project.
27
+ attr_reader :description
28
+
29
+ # Returns the version number of the Flutter project.
30
+ # @return [String] The version number of the Flutter project.
31
+ attr_reader :version
32
+
33
+ # Returns the author of the Flutter project.
34
+ # @return [String] The author of the Flutter project.
35
+ attr_reader :author
36
+
37
+ # Returns the homepage URL of the Flutter project.
38
+ # @return [String] The homepage URL of the Flutter project.
39
+ attr_reader :homepage
24
40
  end
25
41
  end
@@ -1,16 +1,32 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './podspec'
2
4
 
3
5
  module FlutterRb
4
- # iOS representation
6
+ # Represents the iOS folder structure and its associated podspec file.
5
7
  class IOSFolder
6
- # @param {String} path
7
- # @param {Pubspec} pubspec
8
+ # Initializes a new instance of IOSFolder.
9
+ #
10
+ # @param path [String] The path to the iOS folder.
11
+ # @param pubspec [Pubspec] The parsed pubspec information.
12
+ #
13
+ # @return [IOSFolder] A new instance of IOSFolder.
8
14
  def initialize(path, pubspec)
9
15
  @path = path
16
+ # Construct the path to the podspec file.
10
17
  podspec_path = "#{path}/#{pubspec.pubspec_info.name}.podspec"
18
+ # If the podspec file exists, parse it; otherwise, set @podspec to nil.
11
19
  @podspec = File.exist?(podspec_path) ? PodspecParser.new(podspec_path).parse : nil
12
20
  end
13
21
 
14
- attr_reader :path, :podspec
22
+ # Returns the path to the iOS folder.
23
+ #
24
+ # @return [String] The path to the iOS folder.
25
+ attr_reader :path
26
+
27
+ # Returns the parsed podspec information.
28
+ #
29
+ # @return [Podspec, nil] The parsed podspec information, or nil if the podspec file does not exist.
30
+ attr_reader :podspec
15
31
  end
16
32
  end
@@ -1,20 +1,18 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'cocoapods'
2
4
 
3
5
  module FlutterRb
4
- # Podspec representation
6
+ # Represents a parsed Podspec file.
5
7
  class Podspec
6
- # @param {String} path
7
- # @param {String} name
8
- # @param {String} version
9
- # @param {String[]} authors
10
- # @param {String} source
11
- def initialize(
12
- path,
13
- name,
14
- version,
15
- authors,
16
- source
17
- )
8
+ # Initializes a new instance of Podspec.
9
+ #
10
+ # @param path [String] The path to the Podspec file.
11
+ # @param name [String] The name of the Podspec.
12
+ # @param version [String] The version of the Podspec.
13
+ # @param authors [Array<String>] The authors of the Podspec.
14
+ # @param source [String] The source of the Podspec.
15
+ def initialize(path, name, version, authors, source)
18
16
  @path = path
19
17
  @name = name
20
18
  @version = version
@@ -22,19 +20,51 @@ module FlutterRb
22
20
  @source = source
23
21
  end
24
22
 
25
- attr_reader :path, :name, :version, :authors, :source
23
+ # Returns the path to the Podspec file.
24
+ #
25
+ # @return [String] The path to the Podspec file.
26
+ attr_reader :path
27
+
28
+ # Returns the name of the Podspec.
29
+ #
30
+ # @return [String] The name of the Podspec.
31
+ attr_reader :name
32
+
33
+ # Returns the version of the Podspec.
34
+ #
35
+ # @return [String] The version of the Podspec.
36
+ attr_reader :version
37
+
38
+ # Returns the authors of the Podspec.
39
+ #
40
+ # @return [Array<String>] The authors of the Podspec.
41
+ attr_reader :authors
42
+
43
+ # Returns the source of the Podspec.
44
+ #
45
+ # @return [String] The source of the Podspec.
46
+ attr_reader :source
26
47
  end
27
48
 
28
- # Podspec parser
49
+ # Represents a parser for Podspec files.
29
50
  class PodspecParser
30
- # @param {String} path
51
+ # Initializes a new instance of PodspecParser.
52
+ #
53
+ # @param path [String] The path to the Podspec file to be parsed.
31
54
  def initialize(path)
32
55
  @path = path
33
56
  end
34
57
 
35
- # @return {Podspec}
58
+ # Parses the Podspec file at the given path and returns a Podspec object.
59
+ #
60
+ # @return [Podspec] A Podspec object representing the parsed Podspec file.
61
+ #
62
+ # @raise [Pod::DSLError] If there is an error parsing the Podspec file.
36
63
  def parse
64
+ # Parse the Podspec file using CocoaPods' Pod::Specification.
37
65
  podspec = Pod::Specification.from_file(@path)
66
+
67
+ # Create a new Podspec object with the parsed data.
38
68
  @podspec = Podspec.new(
39
69
  @path,
40
70
  podspec.name,
@@ -1,26 +1,28 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'colorize'
2
4
 
3
5
  module FlutterRb
4
6
  # Check report
7
+ # Represents a report for a specific check.
5
8
  class CheckReport
6
- # @param {String} check_name
7
- # @param {CheckReportStatus} check_report_status
8
- # @param {String} message
9
- # @param {String} path
10
- def initialize(
11
- check_name,
12
- check_report_status,
13
- message,
14
- path
15
- )
9
+ # Initializes a new instance of CheckReport.
10
+ #
11
+ # @param check_name [String] The name of the check.
12
+ # @param check_report_status [String] The status of the check report.
13
+ # @param message [String] The message associated with the check report.
14
+ # @param path [String] The path associated with the check report.
15
+ def initialize(check_name, check_report_status, message, path)
16
16
  @check_name = check_name
17
17
  @check_report_status = check_report_status
18
18
  @message = message
19
19
  @path = path
20
20
  end
21
21
 
22
- # @param {Bool} colorize
23
- # @return {String}
22
+ # Prints the check report.
23
+ #
24
+ # @param colorize [Bool] Whether to colorize the output or not. Default is true.
25
+ # @return [String] The formatted check report.
24
26
  def print(colorize: true)
25
27
  if colorize
26
28
  status_color = color_for_report_status(@check_report_status)
@@ -30,8 +32,10 @@ module FlutterRb
30
32
  end
31
33
  end
32
34
 
33
- # @param {CheckReportStatus} check_report_status
34
- # @return {Presenter}
35
+ # Determines the color for the check report status.
36
+ #
37
+ # @param check_report_status [CheckReportStatus] The status of the check report.
38
+ # @return [Symbol] The color associated with the check report status.
35
39
  def color_for_report_status(check_report_status)
36
40
  case check_report_status
37
41
  when CheckReportStatus::NORMAL
@@ -45,13 +49,28 @@ module FlutterRb
45
49
  end
46
50
  end
47
51
 
48
- attr_reader :check_name, :check_report_status, :message, :path
52
+ # Reader for check_name attribute.
53
+ attr_reader :check_name
54
+
55
+ # Reader for check_report_status attribute.
56
+ attr_reader :check_report_status
57
+
58
+ # Reader for message attribute.
59
+ attr_reader :message
60
+
61
+ # Reader for path attribute.
62
+ attr_reader :path
49
63
  end
50
64
 
51
- # Check report status
65
+ # Represents the status of a check report.
52
66
  class CheckReportStatus
53
- NORMAL = 'normal'.freeze
54
- WARNING = 'warning'.freeze
55
- ERROR = 'error'.freeze
67
+ # Constant representing a normal status.
68
+ NORMAL = 'normal'
69
+
70
+ # Constant representing a warning status.
71
+ WARNING = 'warning'
72
+
73
+ # Constant representing an error status.
74
+ ERROR = 'error'
56
75
  end
57
76
  end