Class: FastlaneCore::PkgFileAnalyser
- Inherits:
-
Object
- Object
- FastlaneCore::PkgFileAnalyser
- Defined in:
- fastlane_core/lib/fastlane_core/pkg_file_analyser.rb
Class Method Summary collapse
-
.fetch_app_build(path) ⇒ Object
Fetches the app version from the given pkg file.
- .fetch_app_identifier(path) ⇒ Object
-
.fetch_app_version(path) ⇒ Object
Fetches the app version from the given pkg file.
- .fetch_distribution_xml_file(path) ⇒ Object
Class Method Details
.fetch_app_build(path) ⇒ Object
Fetches the app version from the given pkg file.
21 22 23 24 25 |
# File 'fastlane_core/lib/fastlane_core/pkg_file_analyser.rb', line 21 def self.fetch_app_build(path) xml = self.fetch_distribution_xml_file(path) return xml.elements['installer-gui-script/pkg-ref/bundle-version/bundle'].attributes['CFBundleVersion'] if xml return nil end |
.fetch_app_identifier(path) ⇒ Object
7 8 9 10 11 |
# File 'fastlane_core/lib/fastlane_core/pkg_file_analyser.rb', line 7 def self.fetch_app_identifier(path) xml = self.fetch_distribution_xml_file(path) return xml.elements['installer-gui-script/product'].attributes['id'] if xml return nil end |
.fetch_app_version(path) ⇒ Object
Fetches the app version from the given pkg file.
14 15 16 17 18 |
# File 'fastlane_core/lib/fastlane_core/pkg_file_analyser.rb', line 14 def self.fetch_app_version(path) xml = self.fetch_distribution_xml_file(path) return xml.elements['installer-gui-script/product'].attributes['version'] if xml return nil end |
.fetch_distribution_xml_file(path) ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'fastlane_core/lib/fastlane_core/pkg_file_analyser.rb', line 27 def self.fetch_distribution_xml_file(path) Dir.mktmpdir do |dir| Helper.backticks("xar -C #{dir.shellescape} -xf #{path.shellescape}") Dir.foreach(dir) do |file| next unless file.include?('Distribution') begin content = File.open(File.join(dir, file)) xml = REXML::Document.new(content) if xml.elements['installer-gui-script/product'] return xml end rescue => ex UI.error(ex) UI.error("Error parsing *.pkg distribution xml #{File.join(dir, file)}") end end nil end end |