xcsize 1.0.0 → 1.1.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.
- checksums.yaml +4 -4
- data/{CHANGELOG → CHANGELOG.md} +8 -0
- data/README.md +4 -4
- data/bin/xcsize +1 -0
- data/lib/xcsize/cli.rb +2 -0
- data/lib/xcsize/reader.rb +1 -4
- data/lib/xcsize/version.rb +1 -1
- data/lib/xcsize.rb +0 -2
- data/xcsize.gemspec +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 014fca9ab5bd51e080b688fbd6aa4809162e367949efdd2ad35efc01afbaf574
|
|
4
|
+
data.tar.gz: c327a7584c4f8cd67fe939e405c24774c7b7bdf67151146e1646c051818c8874
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9fd5183d5f60bf6a074c2e6836bf4f9a6ba174c85ca308b61f70b937ce994a86a9e3eb9cd356e9e4a7d2cb499479928bc23f31493644fd0044299d91ed038ea1
|
|
7
|
+
data.tar.gz: 82a33e9f68f5b4f086d3f3be5af43be9260023cd59473f339017157ce0bc2e7e9a0d114dcfc3009239f7103c0b1bda221114f0d60dead94744e0bad3ba0729b1
|
data/{CHANGELOG → CHANGELOG.md}
RENAMED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
+
## [1.1.0](https://github.com/testableapple/xcsize/releases/tag/1.1.0)
|
|
6
|
+
|
|
7
|
+
_October 09, 2025_
|
|
8
|
+
|
|
9
|
+
### 🐛 Fixed
|
|
10
|
+
|
|
11
|
+
- Resolved an issue where the fastlane plugin could trigger fastlane to run twice due to a conflict with the Ruby Commander gem
|
|
12
|
+
|
|
5
13
|
## [1.0.0](https://github.com/testableapple/xcsize/releases/tag/1.0.0)
|
|
6
14
|
|
|
7
15
|
_October 08, 2025_
|
data/README.md
CHANGED
|
@@ -27,7 +27,7 @@ $ gem install xcsize
|
|
|
27
27
|
### Profile a single linkmap
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
xcsize profile --linkmap path/to/your/
|
|
30
|
+
xcsize profile --linkmap path/to/your/linkmap.txt
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Options:
|
|
@@ -37,7 +37,7 @@ Options:
|
|
|
37
37
|
### Compare two linkmaps
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
xcsize compare --old-linkmap
|
|
40
|
+
xcsize compare --old-linkmap old_linkmap.txt --new-linkmap new_linkmap.txt
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
Options:
|
|
@@ -57,9 +57,9 @@ fastlane add_plugin xcsize
|
|
|
57
57
|
|
|
58
58
|
```ruby
|
|
59
59
|
lane :test do
|
|
60
|
-
xcsize(linkmap: 'path/to/your/
|
|
60
|
+
xcsize(linkmap: 'path/to/your/linkmap.txt')
|
|
61
61
|
|
|
62
|
-
xcsize_diff(old_linkmap: 'path/to/your/
|
|
62
|
+
xcsize_diff(old_linkmap: 'path/to/your/old_linkmap.txt', new_linkmap: 'path/to/your/new_linkmap.txt')
|
|
63
63
|
end
|
|
64
64
|
```
|
|
65
65
|
|
data/bin/xcsize
CHANGED
data/lib/xcsize/cli.rb
CHANGED
data/lib/xcsize/reader.rb
CHANGED
|
@@ -90,10 +90,7 @@ module Xcsize
|
|
|
90
90
|
end
|
|
91
91
|
|
|
92
92
|
def self.parse_linkmap(path)
|
|
93
|
-
unless File.exist?(path)
|
|
94
|
-
puts("Error: linkmap file not found: #{path}")
|
|
95
|
-
exit(1)
|
|
96
|
-
end
|
|
93
|
+
raise "Linkmap file not found: #{path}" unless File.exist?(path)
|
|
97
94
|
|
|
98
95
|
files = {}
|
|
99
96
|
in_objects = false
|
data/lib/xcsize/version.rb
CHANGED
data/lib/xcsize.rb
CHANGED
data/xcsize.gemspec
CHANGED
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
spec.require_paths = ['lib']
|
|
25
25
|
spec.required_ruby_version = '>= 2.4'
|
|
26
26
|
|
|
27
|
-
spec.add_dependency('commander', '
|
|
27
|
+
spec.add_dependency('commander', '>= 4.6', '< 6.0')
|
|
28
28
|
|
|
29
29
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
30
30
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcsize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexey Alter-Pesotskiy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-10-
|
|
11
|
+
date: 2025-10-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: commander
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '4.6'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '6.0'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '4.6'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '6.0'
|
|
27
33
|
description: A Ruby gem to profile iOS and macOS app and framework sizes from linkmap
|
|
28
34
|
files, providing detailed breakdowns and insights.
|
|
29
35
|
email:
|
|
@@ -38,7 +44,7 @@ files:
|
|
|
38
44
|
- ".github/dependabot.yml"
|
|
39
45
|
- ".gitignore"
|
|
40
46
|
- ".rubocop.yml"
|
|
41
|
-
- CHANGELOG
|
|
47
|
+
- CHANGELOG.md
|
|
42
48
|
- Gemfile
|
|
43
49
|
- LICENSE
|
|
44
50
|
- README.md
|