-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathplist_generator.rb
85 lines (72 loc) · 2.54 KB
/
plist_generator.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# frozen_string_literal: true
require 'redcarpet'
module CocoaPodsAcknowledgements
class PlistGenerator
class << self
def markdown_parser
@markdown_parser ||= Redcarpet::Markdown.new(Redcarpet::Render::HTML)
end
def generate(target_description, sandbox, excluded)
root_specs = target_description.specs.map(&:root).uniq.reject { |spec| excluded.include?(spec.name) }
return nil if root_specs.empty?
specs_metadata = root_specs.map do |spec|
platform = Pod::Platform.new(target_description.platform_name)
file_accessor = file_accessor(spec, platform, sandbox)
license_text = license_text(spec, file_accessor)
{
"name" => spec.name,
"version" => spec.version,
"authors" => spec.authors,
"socialMediaURL" => spec.social_media_url,
"summary" => spec.summary,
"description" => parse_markdown(spec.description),
"licenseType" => spec.license[:type],
"licenseText" => license_text,
"homepage" => spec.homepage,
}
end
{
"specs" => specs_metadata
}
end
#-----------------------------------------------------------------------#
def file_accessor(spec, platform, sandbox)
pod_root = sandbox.pod_dir(spec.name)
if pod_root.exist?
path_list = Pod::Sandbox::PathList.new(pod_root)
Pod::Sandbox::FileAccessor.new(path_list, spec.consumer(platform))
end
end
# Returns the text of the license for the given spec.
#
# @param [Specification] spec
# the specification for which license is needed.
#
# @return [String] The text of the license.
# @return [Nil] If not license text could be found.
#
def license_text(spec, file_accessor)
return nil unless spec.license
text = spec.license[:text]
unless text
if file_accessor
if license_file = file_accessor.license
if license_file.exist?
text = IO.read(license_file)
else
Pod::UI.warn "Unable to read the license file `#{license_file }` " \
"for the spec `#{spec}`"
end
end
end
end
text
end
def parse_markdown(text)
return nil unless text
markdown_parser.render(text)
end
#-----------------------------------------------------------------------#
end
end
end