app-info 2.7.0.beta5 → 2.7.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.md +8 -1
- data/README.md +3 -2
- data/lib/app_info/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1e0ca3539dc493e0003d18ad437da67c6a80f9c131de3e191139e7b03abb6f0
|
|
4
|
+
data.tar.gz: 490bca65c07243e7e27b296c2f5143da879cefcb6ff87081d8ef9322f62fd3d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a50f751f9bc6fe9336beb91fe4306be0824e45129d4e4d2c3b860751eca1b8c51ffb1544e48514c2b1d90c4a0c9a09d404433396bec2cd4193c116511a1ba125
|
|
7
|
+
data.tar.gz: 6cb7dd2d79e0ed787ecbc2dd9197c3a1cbefaea1f7f6aead46ce5ac4f7eeaf4c70ab98f3baefc8c0d506cc10b95aa97aef308a418d446e6a72279b0f470ecac0
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
9
9
|
|
|
10
10
|
> List all changes before release a new version.
|
|
11
11
|
|
|
12
|
+
## [2.7.0] (2021-10-15)
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- Android App Bundle (a.k.a) aab support!!! parts support [#36](https://github.com/icyleaf/app_info/pull/36)
|
|
17
|
+
|
|
12
18
|
## [2.7.0.beta5] (2021-10-14)
|
|
13
19
|
|
|
14
20
|
### Fixed
|
|
@@ -204,7 +210,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
204
210
|
|
|
205
211
|
- Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed))
|
|
206
212
|
|
|
207
|
-
[Unreleased]: https://github.com/icyleaf/app-info/compare/v2.
|
|
213
|
+
[Unreleased]: https://github.com/icyleaf/app-info/compare/v2.6.5..HEAD
|
|
214
|
+
[2.7.0]: https://github.com/icyleaf/app-info/compare/v2.6.5...v2.7.0
|
|
208
215
|
[2.7.0.beta5]: https://github.com/icyleaf/app-info/compare/v2.7.0.beta2...v2.7.0.beta5
|
|
209
216
|
[2.7.0.beta2]: https://github.com/icyleaf/app-info/compare/v2.7.0.beta1...v2.7.0.beta2
|
|
210
217
|
[2.7.0.beta1]: https://github.com/icyleaf/app-info/compare/v2.6.5...v2.7.0.beta1
|
data/README.md
CHANGED
|
@@ -49,6 +49,7 @@ require 'app-info'
|
|
|
49
49
|
parser = AppInfo.parse('iphone.ipa')
|
|
50
50
|
parser = AppInfo.parse('ipad.ipa')
|
|
51
51
|
parser = AppInfo.parse('android.apk')
|
|
52
|
+
parser = AppInfo.parse('android.aab')
|
|
52
53
|
parser = AppInfo.parse('u-u-i-d.mobileprovision')
|
|
53
54
|
parser = AppInfo.parse('macOS.App.zip')
|
|
54
55
|
parser = AppInfo.parse('App.dSYm.zip')
|
|
@@ -296,9 +297,9 @@ It is possible to use this gem as a command line interface to parse mobile app:
|
|
|
296
297
|
```
|
|
297
298
|
> app-info
|
|
298
299
|
|
|
299
|
-
app-info (
|
|
300
|
+
app-info (2.7.0)> p = AppInfo.parse('/path/to/app')
|
|
300
301
|
=> #<AppInfo::APK::......>
|
|
301
|
-
app-info (
|
|
302
|
+
app-info (2.7.0)> p.name
|
|
302
303
|
=> "AppName"
|
|
303
304
|
```
|
|
304
305
|
|
data/lib/app_info/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: app-info
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.7.0
|
|
4
|
+
version: 2.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- icyleaf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-10-
|
|
11
|
+
date: 2021-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: CFPropertyList
|
|
@@ -272,9 +272,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
272
272
|
version: '2.5'
|
|
273
273
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
274
274
|
requirements:
|
|
275
|
-
- - "
|
|
275
|
+
- - ">="
|
|
276
276
|
- !ruby/object:Gem::Version
|
|
277
|
-
version:
|
|
277
|
+
version: '0'
|
|
278
278
|
requirements: []
|
|
279
279
|
rubygems_version: 3.1.4
|
|
280
280
|
signing_key:
|