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.
- checksums.yaml +4 -4
- data/LICENSE +20 -20
- data/README.md +144 -130
- data/bin/frb +19 -19
- data/lib/checkstyle_report/checkstyle_report.rb +90 -90
- data/lib/flutter_rb/checks/check.rb +24 -24
- data/lib/flutter_rb/checks/plugin_directories_check.rb +33 -33
- data/lib/flutter_rb/checks/plugin_gradle_check.rb +57 -57
- data/lib/flutter_rb/checks/plugin_podspec_check.rb +109 -109
- data/lib/flutter_rb/checks/plugin_pubspec_check.rb +152 -152
- data/lib/flutter_rb/config/flutter_rb_config.rb +16 -16
- data/lib/flutter_rb/config/flutter_rb_config_initializer.rb +56 -56
- data/lib/flutter_rb/project/project.rb +53 -53
- data/lib/flutter_rb/project/specs/android/android_folder.rb +13 -13
- data/lib/flutter_rb/project/specs/android/gradle.rb +27 -27
- data/lib/flutter_rb/project/specs/flutter/dev_dependency.rb +11 -11
- data/lib/flutter_rb/project/specs/flutter/platform_plugin.rb +18 -18
- data/lib/flutter_rb/project/specs/flutter/pubspec.rb +69 -69
- data/lib/flutter_rb/project/specs/flutter/pubspec_info.rb +20 -20
- data/lib/flutter_rb/project/specs/ios/ios_folder.rb +14 -14
- data/lib/flutter_rb/project/specs/ios/podspec.rb +40 -40
- data/lib/flutter_rb/report/check_report.rb +47 -47
- data/lib/flutter_rb.rb +93 -93
- metadata +10 -38
@@ -1,56 +1,56 @@
|
|
1
|
-
require_relative './flutter_rb_config'
|
2
|
-
require_relative '../checks/plugin_directories_check'
|
3
|
-
|
4
|
-
require 'yaml'
|
5
|
-
|
6
|
-
module FlutterRb
|
7
|
-
# Class that initialize configuration
|
8
|
-
class FlutterRbConfigInitializer
|
9
|
-
FLUTTER_CHECKS = [
|
10
|
-
PluginDirectoriesCheck.new,
|
11
|
-
PluginPubspecNameCheck.new,
|
12
|
-
PluginPubspecDescriptionCheck.new,
|
13
|
-
PluginPubspecVersionCheck.new,
|
14
|
-
PluginPubspecAuthorCheck.new,
|
15
|
-
PluginPubspecHomepageCheck.new,
|
16
|
-
PluginPubspecEffectiveDartCheck.new
|
17
|
-
].freeze
|
18
|
-
|
19
|
-
ANDROID_CHECKS = [
|
20
|
-
PluginGradleAndroidPackageCheck.new,
|
21
|
-
PluginGradleVersionCheck.new
|
22
|
-
].freeze
|
23
|
-
|
24
|
-
IOS_CHECKS = [
|
25
|
-
PluginPodspecNameCheck.new,
|
26
|
-
PluginPodspecVersionCheck.new,
|
27
|
-
PluginPodspecAuthorsCheck.new,
|
28
|
-
PluginPodspecSourceCheck.new
|
29
|
-
].freeze
|
30
|
-
|
31
|
-
# rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
|
32
|
-
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?
|
40
|
-
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
|
44
|
-
)
|
45
|
-
end
|
46
|
-
# rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
|
47
|
-
|
48
|
-
def default
|
49
|
-
FlutterRbConfig.new(
|
50
|
-
FLUTTER_CHECKS,
|
51
|
-
ANDROID_CHECKS,
|
52
|
-
IOS_CHECKS
|
53
|
-
)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
1
|
+
require_relative './flutter_rb_config'
|
2
|
+
require_relative '../checks/plugin_directories_check'
|
3
|
+
|
4
|
+
require 'yaml'
|
5
|
+
|
6
|
+
module FlutterRb
|
7
|
+
# Class that initialize configuration
|
8
|
+
class FlutterRbConfigInitializer
|
9
|
+
FLUTTER_CHECKS = [
|
10
|
+
PluginDirectoriesCheck.new,
|
11
|
+
PluginPubspecNameCheck.new,
|
12
|
+
PluginPubspecDescriptionCheck.new,
|
13
|
+
PluginPubspecVersionCheck.new,
|
14
|
+
PluginPubspecAuthorCheck.new,
|
15
|
+
PluginPubspecHomepageCheck.new,
|
16
|
+
PluginPubspecEffectiveDartCheck.new
|
17
|
+
].freeze
|
18
|
+
|
19
|
+
ANDROID_CHECKS = [
|
20
|
+
PluginGradleAndroidPackageCheck.new,
|
21
|
+
PluginGradleVersionCheck.new
|
22
|
+
].freeze
|
23
|
+
|
24
|
+
IOS_CHECKS = [
|
25
|
+
PluginPodspecNameCheck.new,
|
26
|
+
PluginPodspecVersionCheck.new,
|
27
|
+
PluginPodspecAuthorsCheck.new,
|
28
|
+
PluginPodspecSourceCheck.new
|
29
|
+
].freeze
|
30
|
+
|
31
|
+
# rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
|
32
|
+
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?
|
40
|
+
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
|
44
|
+
)
|
45
|
+
end
|
46
|
+
# rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
|
47
|
+
|
48
|
+
def default
|
49
|
+
FlutterRbConfig.new(
|
50
|
+
FLUTTER_CHECKS,
|
51
|
+
ANDROID_CHECKS,
|
52
|
+
IOS_CHECKS
|
53
|
+
)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -1,53 +1,53 @@
|
|
1
|
-
require_relative './specs/flutter/pubspec'
|
2
|
-
require_relative './specs/flutter/dev_dependency'
|
3
|
-
require_relative './specs/flutter/platform_plugin'
|
4
|
-
require_relative './specs/android/android_folder'
|
5
|
-
require_relative './specs/android/gradle'
|
6
|
-
require_relative './specs/ios/ios_folder'
|
7
|
-
|
8
|
-
require 'yaml'
|
9
|
-
|
10
|
-
module FlutterRb
|
11
|
-
# Project representation
|
12
|
-
class Project
|
13
|
-
def initialize(
|
14
|
-
path,
|
15
|
-
pubspec,
|
16
|
-
android_folder,
|
17
|
-
ios_folder
|
18
|
-
)
|
19
|
-
@path = path
|
20
|
-
@pubspec = pubspec
|
21
|
-
@android_folder = android_folder
|
22
|
-
@ios_folder = ios_folder
|
23
|
-
end
|
24
|
-
|
25
|
-
attr_accessor :path, :pubspec, :android_folder, :ios_folder
|
26
|
-
end
|
27
|
-
|
28
|
-
# Flutter plugin project parser
|
29
|
-
class ProjectParser
|
30
|
-
def initialize(path)
|
31
|
-
@path = path
|
32
|
-
end
|
33
|
-
|
34
|
-
def project
|
35
|
-
File.exist?("#{@path}/pubspec.yaml") ? parse_project : nil
|
36
|
-
end
|
37
|
-
|
38
|
-
private
|
39
|
-
|
40
|
-
def parse_project
|
41
|
-
pubspec_path = "#{@path}/pubspec.yaml"
|
42
|
-
android_path = "#{@path}/android"
|
43
|
-
ios_path = "#{@path}/ios"
|
44
|
-
pubspec = PubspecParser.new(pubspec_path, YAML.load_file(pubspec_path)).parse
|
45
|
-
Project.new(
|
46
|
-
@path,
|
47
|
-
pubspec,
|
48
|
-
File.exist?(android_path) ? AndroidFolder.new(android_path) : nil,
|
49
|
-
File.exist?(ios_path) ? IOSFolder.new(ios_path, pubspec) : nil
|
50
|
-
)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
1
|
+
require_relative './specs/flutter/pubspec'
|
2
|
+
require_relative './specs/flutter/dev_dependency'
|
3
|
+
require_relative './specs/flutter/platform_plugin'
|
4
|
+
require_relative './specs/android/android_folder'
|
5
|
+
require_relative './specs/android/gradle'
|
6
|
+
require_relative './specs/ios/ios_folder'
|
7
|
+
|
8
|
+
require 'yaml'
|
9
|
+
|
10
|
+
module FlutterRb
|
11
|
+
# Project representation
|
12
|
+
class Project
|
13
|
+
def initialize(
|
14
|
+
path,
|
15
|
+
pubspec,
|
16
|
+
android_folder,
|
17
|
+
ios_folder
|
18
|
+
)
|
19
|
+
@path = path
|
20
|
+
@pubspec = pubspec
|
21
|
+
@android_folder = android_folder
|
22
|
+
@ios_folder = ios_folder
|
23
|
+
end
|
24
|
+
|
25
|
+
attr_accessor :path, :pubspec, :android_folder, :ios_folder
|
26
|
+
end
|
27
|
+
|
28
|
+
# Flutter plugin project parser
|
29
|
+
class ProjectParser
|
30
|
+
def initialize(path)
|
31
|
+
@path = path
|
32
|
+
end
|
33
|
+
|
34
|
+
def project
|
35
|
+
File.exist?("#{@path}/pubspec.yaml") ? parse_project : nil
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def parse_project
|
41
|
+
pubspec_path = "#{@path}/pubspec.yaml"
|
42
|
+
android_path = "#{@path}/android"
|
43
|
+
ios_path = "#{@path}/ios"
|
44
|
+
pubspec = PubspecParser.new(pubspec_path, YAML.load_file(pubspec_path)).parse
|
45
|
+
Project.new(
|
46
|
+
@path,
|
47
|
+
pubspec,
|
48
|
+
File.exist?(android_path) ? AndroidFolder.new(android_path) : nil,
|
49
|
+
File.exist?(ios_path) ? IOSFolder.new(ios_path, pubspec) : nil
|
50
|
+
)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -1,13 +1,13 @@
|
|
1
|
-
require_relative './gradle'
|
2
|
-
|
3
|
-
module FlutterRb
|
4
|
-
# Android project representation
|
5
|
-
class AndroidFolder
|
6
|
-
def initialize(path)
|
7
|
-
@path = path
|
8
|
-
@gradle = GradleParser.new(@path).parse
|
9
|
-
end
|
10
|
-
|
11
|
-
attr_reader :path, :gradle
|
12
|
-
end
|
13
|
-
end
|
1
|
+
require_relative './gradle'
|
2
|
+
|
3
|
+
module FlutterRb
|
4
|
+
# Android project representation
|
5
|
+
class AndroidFolder
|
6
|
+
def initialize(path)
|
7
|
+
@path = path
|
8
|
+
@gradle = GradleParser.new(@path).parse
|
9
|
+
end
|
10
|
+
|
11
|
+
attr_reader :path, :gradle
|
12
|
+
end
|
13
|
+
end
|
@@ -1,27 +1,27 @@
|
|
1
|
-
require 'json'
|
2
|
-
|
3
|
-
module FlutterRb
|
4
|
-
# Gradle representation
|
5
|
-
class Gradle
|
6
|
-
def initialize(path, version)
|
7
|
-
@path = path
|
8
|
-
@version = version
|
9
|
-
end
|
10
|
-
|
11
|
-
attr_reader :path, :version
|
12
|
-
end
|
13
|
-
|
14
|
-
# Gradle parser
|
15
|
-
class GradleParser
|
16
|
-
def initialize(path)
|
17
|
-
@path = path
|
18
|
-
end
|
19
|
-
|
20
|
-
def parse
|
21
|
-
`gradle -p #{@path} -q prepareInfo`
|
22
|
-
info_file = File.read "#{@path}/flutter_rb_gradle_plugin_output.json"
|
23
|
-
info = JSON.parse info_file
|
24
|
-
Gradle.new(@path, info['version'])
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
module FlutterRb
|
4
|
+
# Gradle representation
|
5
|
+
class Gradle
|
6
|
+
def initialize(path, version)
|
7
|
+
@path = path
|
8
|
+
@version = version
|
9
|
+
end
|
10
|
+
|
11
|
+
attr_reader :path, :version
|
12
|
+
end
|
13
|
+
|
14
|
+
# Gradle parser
|
15
|
+
class GradleParser
|
16
|
+
def initialize(path)
|
17
|
+
@path = path
|
18
|
+
end
|
19
|
+
|
20
|
+
def parse
|
21
|
+
`gradle -p #{@path} -q prepareInfo`
|
22
|
+
info_file = File.read "#{@path}/flutter_rb_gradle_plugin_output.json"
|
23
|
+
info = JSON.parse info_file
|
24
|
+
Gradle.new(@path, info['version'])
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
module FlutterRb
|
2
|
-
# Dev dependency, contains name and version
|
3
|
-
class DevDependency
|
4
|
-
def initialize(name, version)
|
5
|
-
@name = name
|
6
|
-
@version = version
|
7
|
-
end
|
8
|
-
|
9
|
-
attr_reader :name, :version
|
10
|
-
end
|
11
|
-
end
|
1
|
+
module FlutterRb
|
2
|
+
# Dev dependency, contains name and version
|
3
|
+
class DevDependency
|
4
|
+
def initialize(name, version)
|
5
|
+
@name = name
|
6
|
+
@version = version
|
7
|
+
end
|
8
|
+
|
9
|
+
attr_reader :name, :version
|
10
|
+
end
|
11
|
+
end
|
@@ -1,18 +1,18 @@
|
|
1
|
-
module FlutterRb
|
2
|
-
# Flutter plugin, contains platform, package and plugin class
|
3
|
-
class PlatformPlugin
|
4
|
-
def initialize(platform, package, plugin_class)
|
5
|
-
@platform = platform
|
6
|
-
@package = package
|
7
|
-
@plugin_class = plugin_class
|
8
|
-
end
|
9
|
-
|
10
|
-
attr_reader :platform, :package, :plugin_class
|
11
|
-
end
|
12
|
-
|
13
|
-
# Supported platforms for this tool
|
14
|
-
class Platform
|
15
|
-
ANDROID = 'android'.freeze
|
16
|
-
IOS = 'ios'.freeze
|
17
|
-
end
|
18
|
-
end
|
1
|
+
module FlutterRb
|
2
|
+
# Flutter plugin, contains platform, package and plugin class
|
3
|
+
class PlatformPlugin
|
4
|
+
def initialize(platform, package, plugin_class)
|
5
|
+
@platform = platform
|
6
|
+
@package = package
|
7
|
+
@plugin_class = plugin_class
|
8
|
+
end
|
9
|
+
|
10
|
+
attr_reader :platform, :package, :plugin_class
|
11
|
+
end
|
12
|
+
|
13
|
+
# Supported platforms for this tool
|
14
|
+
class Platform
|
15
|
+
ANDROID = 'android'.freeze
|
16
|
+
IOS = 'ios'.freeze
|
17
|
+
end
|
18
|
+
end
|
@@ -1,69 +1,69 @@
|
|
1
|
-
require_relative './pubspec_info'
|
2
|
-
require_relative './dev_dependency'
|
3
|
-
require_relative './platform_plugin'
|
4
|
-
|
5
|
-
module FlutterRb
|
6
|
-
# pubspec.yaml representation
|
7
|
-
class Pubspec
|
8
|
-
def initialize(
|
9
|
-
path,
|
10
|
-
pubspec_info,
|
11
|
-
dev_dependencies,
|
12
|
-
platform_plugins
|
13
|
-
)
|
14
|
-
@path = path
|
15
|
-
@pubspec_info = pubspec_info
|
16
|
-
@dev_dependencies = dev_dependencies
|
17
|
-
@platform_plugins = platform_plugins
|
18
|
-
end
|
19
|
-
|
20
|
-
attr_reader :path, :pubspec_info, :dev_dependencies, :platform_plugins
|
21
|
-
end
|
22
|
-
|
23
|
-
# pubspec.yaml parser
|
24
|
-
class PubspecParser
|
25
|
-
def initialize(path, pubspec)
|
26
|
-
@path = path
|
27
|
-
@pubspec = pubspec
|
28
|
-
end
|
29
|
-
|
30
|
-
def parse
|
31
|
-
Pubspec.new(
|
32
|
-
@path,
|
33
|
-
pubspec_info(@pubspec),
|
34
|
-
dev_dependencies(@pubspec),
|
35
|
-
platform_plugins(@pubspec)
|
36
|
-
)
|
37
|
-
end
|
38
|
-
|
39
|
-
def pubspec_info(pubspec)
|
40
|
-
PubspecInfo.new(
|
41
|
-
pubspec['name'],
|
42
|
-
pubspec['description'],
|
43
|
-
pubspec['version'],
|
44
|
-
pubspec['author'],
|
45
|
-
pubspec['homepage']
|
46
|
-
)
|
47
|
-
end
|
48
|
-
|
49
|
-
def dev_dependencies(pubspec)
|
50
|
-
pubspec['dev_dependencies']&.map do |dev_dependency|
|
51
|
-
DevDependency.new(
|
52
|
-
dev_dependency.first,
|
53
|
-
dev_dependency.last
|
54
|
-
)
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
def platform_plugins(pubspec)
|
59
|
-
pubspec.dig('flutter', 'plugin', 'platforms')&.map do |platform_plugin|
|
60
|
-
plugin_info = platform_plugin.last
|
61
|
-
PlatformPlugin.new(
|
62
|
-
plugin_info['package'],
|
63
|
-
plugin_info['pluginClass'],
|
64
|
-
platform_plugin.first == Platform::ANDROID ? Platform::ANDROID : Platform::IOS
|
65
|
-
)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
1
|
+
require_relative './pubspec_info'
|
2
|
+
require_relative './dev_dependency'
|
3
|
+
require_relative './platform_plugin'
|
4
|
+
|
5
|
+
module FlutterRb
|
6
|
+
# pubspec.yaml representation
|
7
|
+
class Pubspec
|
8
|
+
def initialize(
|
9
|
+
path,
|
10
|
+
pubspec_info,
|
11
|
+
dev_dependencies,
|
12
|
+
platform_plugins
|
13
|
+
)
|
14
|
+
@path = path
|
15
|
+
@pubspec_info = pubspec_info
|
16
|
+
@dev_dependencies = dev_dependencies
|
17
|
+
@platform_plugins = platform_plugins
|
18
|
+
end
|
19
|
+
|
20
|
+
attr_reader :path, :pubspec_info, :dev_dependencies, :platform_plugins
|
21
|
+
end
|
22
|
+
|
23
|
+
# pubspec.yaml parser
|
24
|
+
class PubspecParser
|
25
|
+
def initialize(path, pubspec)
|
26
|
+
@path = path
|
27
|
+
@pubspec = pubspec
|
28
|
+
end
|
29
|
+
|
30
|
+
def parse
|
31
|
+
Pubspec.new(
|
32
|
+
@path,
|
33
|
+
pubspec_info(@pubspec),
|
34
|
+
dev_dependencies(@pubspec),
|
35
|
+
platform_plugins(@pubspec)
|
36
|
+
)
|
37
|
+
end
|
38
|
+
|
39
|
+
def pubspec_info(pubspec)
|
40
|
+
PubspecInfo.new(
|
41
|
+
pubspec['name'],
|
42
|
+
pubspec['description'],
|
43
|
+
pubspec['version'],
|
44
|
+
pubspec['author'],
|
45
|
+
pubspec['homepage']
|
46
|
+
)
|
47
|
+
end
|
48
|
+
|
49
|
+
def dev_dependencies(pubspec)
|
50
|
+
pubspec['dev_dependencies']&.map do |dev_dependency|
|
51
|
+
DevDependency.new(
|
52
|
+
dev_dependency.first,
|
53
|
+
dev_dependency.last
|
54
|
+
)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def platform_plugins(pubspec)
|
59
|
+
pubspec.dig('flutter', 'plugin', 'platforms')&.map do |platform_plugin|
|
60
|
+
plugin_info = platform_plugin.last
|
61
|
+
PlatformPlugin.new(
|
62
|
+
plugin_info['package'],
|
63
|
+
plugin_info['pluginClass'],
|
64
|
+
platform_plugin.first == Platform::ANDROID ? Platform::ANDROID : Platform::IOS
|
65
|
+
)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -1,20 +1,20 @@
|
|
1
|
-
module FlutterRb
|
2
|
-
# Flutter plugin info from pubspec.yaml
|
3
|
-
class PubspecInfo
|
4
|
-
def initialize(
|
5
|
-
name,
|
6
|
-
description,
|
7
|
-
version,
|
8
|
-
author,
|
9
|
-
homepage
|
10
|
-
)
|
11
|
-
@name = name
|
12
|
-
@description = description
|
13
|
-
@version = version
|
14
|
-
@author = author
|
15
|
-
@homepage = homepage
|
16
|
-
end
|
17
|
-
|
18
|
-
attr_reader :name, :description, :version, :author, :homepage
|
19
|
-
end
|
20
|
-
end
|
1
|
+
module FlutterRb
|
2
|
+
# Flutter plugin info from pubspec.yaml
|
3
|
+
class PubspecInfo
|
4
|
+
def initialize(
|
5
|
+
name,
|
6
|
+
description,
|
7
|
+
version,
|
8
|
+
author,
|
9
|
+
homepage
|
10
|
+
)
|
11
|
+
@name = name
|
12
|
+
@description = description
|
13
|
+
@version = version
|
14
|
+
@author = author
|
15
|
+
@homepage = homepage
|
16
|
+
end
|
17
|
+
|
18
|
+
attr_reader :name, :description, :version, :author, :homepage
|
19
|
+
end
|
20
|
+
end
|
@@ -1,14 +1,14 @@
|
|
1
|
-
require_relative './podspec'
|
2
|
-
|
3
|
-
module FlutterRb
|
4
|
-
# iOS representation
|
5
|
-
class IOSFolder
|
6
|
-
def initialize(path, pubspec)
|
7
|
-
@path = path
|
8
|
-
podspec_path = "#{path}/#{pubspec.pubspec_info.name}.podspec"
|
9
|
-
@podspec = File.exist?(podspec_path) ? PodspecParser.new(podspec_path).parse : nil
|
10
|
-
end
|
11
|
-
|
12
|
-
attr_reader :path, :podspec
|
13
|
-
end
|
14
|
-
end
|
1
|
+
require_relative './podspec'
|
2
|
+
|
3
|
+
module FlutterRb
|
4
|
+
# iOS representation
|
5
|
+
class IOSFolder
|
6
|
+
def initialize(path, pubspec)
|
7
|
+
@path = path
|
8
|
+
podspec_path = "#{path}/#{pubspec.pubspec_info.name}.podspec"
|
9
|
+
@podspec = File.exist?(podspec_path) ? PodspecParser.new(podspec_path).parse : nil
|
10
|
+
end
|
11
|
+
|
12
|
+
attr_reader :path, :podspec
|
13
|
+
end
|
14
|
+
end
|
@@ -1,40 +1,40 @@
|
|
1
|
-
require 'cocoapods'
|
2
|
-
|
3
|
-
module FlutterRb
|
4
|
-
# Podspec representation
|
5
|
-
class Podspec
|
6
|
-
def initialize(
|
7
|
-
path,
|
8
|
-
name,
|
9
|
-
version,
|
10
|
-
authors,
|
11
|
-
source
|
12
|
-
)
|
13
|
-
@path = path
|
14
|
-
@name = name
|
15
|
-
@version = version
|
16
|
-
@authors = authors
|
17
|
-
@source = source
|
18
|
-
end
|
19
|
-
|
20
|
-
attr_reader :path, :name, :version, :authors, :source
|
21
|
-
end
|
22
|
-
|
23
|
-
# Podspec parser
|
24
|
-
class PodspecParser
|
25
|
-
def initialize(path)
|
26
|
-
@path = path
|
27
|
-
end
|
28
|
-
|
29
|
-
def parse
|
30
|
-
podspec = Pod::Specification.from_file(@path)
|
31
|
-
@podspec = Podspec.new(
|
32
|
-
@path,
|
33
|
-
podspec.name,
|
34
|
-
podspec.version.version,
|
35
|
-
podspec.authors.nil? ? podspec.author : podspec.authors,
|
36
|
-
podspec.source
|
37
|
-
)
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
1
|
+
require 'cocoapods'
|
2
|
+
|
3
|
+
module FlutterRb
|
4
|
+
# Podspec representation
|
5
|
+
class Podspec
|
6
|
+
def initialize(
|
7
|
+
path,
|
8
|
+
name,
|
9
|
+
version,
|
10
|
+
authors,
|
11
|
+
source
|
12
|
+
)
|
13
|
+
@path = path
|
14
|
+
@name = name
|
15
|
+
@version = version
|
16
|
+
@authors = authors
|
17
|
+
@source = source
|
18
|
+
end
|
19
|
+
|
20
|
+
attr_reader :path, :name, :version, :authors, :source
|
21
|
+
end
|
22
|
+
|
23
|
+
# Podspec parser
|
24
|
+
class PodspecParser
|
25
|
+
def initialize(path)
|
26
|
+
@path = path
|
27
|
+
end
|
28
|
+
|
29
|
+
def parse
|
30
|
+
podspec = Pod::Specification.from_file(@path)
|
31
|
+
@podspec = Podspec.new(
|
32
|
+
@path,
|
33
|
+
podspec.name,
|
34
|
+
podspec.version.version,
|
35
|
+
podspec.authors.nil? ? podspec.author : podspec.authors,
|
36
|
+
podspec.source
|
37
|
+
)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|