app-info 2.7.0.beta5 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87af7ee3238f0c866c3d4ad7110bba74ae1950e28f1619049ec52470253bf45a
4
- data.tar.gz: 8eeaaa20c0f5e4036e2c2138f51f42554d0e5b73dc340c9a71ea9ce344d0c55a
3
+ metadata.gz: e1e0ca3539dc493e0003d18ad437da67c6a80f9c131de3e191139e7b03abb6f0
4
+ data.tar.gz: 490bca65c07243e7e27b296c2f5143da879cefcb6ff87081d8ef9322f62fd3d6
5
5
  SHA512:
6
- metadata.gz: c61cf34da0123d9cd6e0df63f3f342d61858c3dfc9dfd8e57cfce7a18af9bae5fbc85b8a20e79a9e8b54a630b240105ce036b0f03c49fd96df8945fa472ae148
7
- data.tar.gz: ae7f4064095ad2c1518095876532c7c6364a785209fefb9e8fbf1fa7c3fe02fe3027df20572db55b5fb72d8cdadd70e59738ec0458a3fd391c264b168f744ff5
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.7.0.beta5..HEAD
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 (0.6.0)> p = AppInfo.parse('/path/to/app')
300
+ app-info (2.7.0)> p = AppInfo.parse('/path/to/app')
300
301
  => #<AppInfo::APK::......>
301
- app-info (0.6.0)> p.name
302
+ app-info (2.7.0)> p.name
302
303
  => "AppName"
303
304
  ```
304
305
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppInfo
4
- VERSION = '2.7.0.beta5'
4
+ VERSION = '2.7.0'
5
5
  end
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.beta5
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-14 00:00:00.000000000 Z
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: 1.3.1
277
+ version: '0'
278
278
  requirements: []
279
279
  rubygems_version: 3.1.4
280
280
  signing_key: