fastlane-plugin-xcsize 1.0.0 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 300893845f17cc41c7da2d6f4e36bf0770953052363a9ecd423cf495275ffd66
4
- data.tar.gz: b27fff9260c59372e46e8d4f1a6f9d7c09fb8300ba8deb9d162abc9eaead9ee6
3
+ metadata.gz: 2ef191f5b276ba52ad9be4de4cbc541207a45407928fa3e853117459155c7d0e
4
+ data.tar.gz: c66e97f363cc9dd6e26c0271bb3c58589c9f544edddaabe318a2ecd2c4f03dc5
5
5
  SHA512:
6
- metadata.gz: fd1d586b2400380ca4fb6bdd5fc77979c857814de7560a422abae818d83e826b9205f1b4320e4c624f22ea6d7e6829a8c04a82d759578b4d8f648114f47e4d71
7
- data.tar.gz: 983b781b7d1947fb1f0bc556c2713854b53d1079c423dc462d4cb808caa05e0314d0fbbe69e6d586c3ee2df1438ac9fa7457c9c2e4b440d495edabb4ddfdab9a
6
+ metadata.gz: 42431f7ea8e5bf515e7e732583d7a3f3bc7c2ccdce48bb9a23182899c0b8a425235758adb85d0980edc9912ddc134b5f61aa620ff7f973ea8f39ad97ba557060
7
+ data.tar.gz: 62887442a7a12b0de17823bfa8fe97ef870059638718ca8645072a69ce22e08d5ae1e97b3bf017128b55c1d51d86bee6e06b5e60e8b3b7dbface6e67e2bb33d5
@@ -9,7 +9,11 @@ module Fastlane
9
9
  options = {}
10
10
  params.all_keys.each { |k| options[k] = params[k] }
11
11
 
12
- ::Xcsize::Profiler.new(options).profile
12
+ profiler = ::Xcsize::Profiler.new(
13
+ linkmap_path: options[:linkmap],
14
+ threshold: options[:threshold]
15
+ )
16
+ profiler.profile
13
17
  end
14
18
 
15
19
  def self.description
@@ -9,7 +9,12 @@ module Fastlane
9
9
  options = {}
10
10
  params.all_keys.each { |k| options[k] = params[k] }
11
11
 
12
- ::Xcsize::Comparator.new(options).compare
12
+ comparator = ::Xcsize::Comparator.new(
13
+ old_linkmap_path: options[:old_linkmap],
14
+ new_linkmap_path: options[:new_linkmap],
15
+ threshold: options[:threshold]
16
+ )
17
+ comparator.compare
13
18
  end
14
19
 
15
20
  def self.description
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Xcsize
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-xcsize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexey Alter-Pesotskiy