app-info 2.1.0 → 2.1.1

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: 1c792e9fab37d4beadae7e0d8d6d955e4b51b8d64d8328cbd423ab65b56ae61a
4
- data.tar.gz: 617c4f5bdee5412285f17dc2e97f22e9a6f325ba4efbaf50373030473c9f588a
3
+ metadata.gz: cffe87f63672515e5bd9dc2654218ddc2a9de0cde184bd27e47bd6923618d565
4
+ data.tar.gz: d96f0e38be72d9e2918e6679e6d03f4cabd9c4901b02c79b9f4a172bba04e349
5
5
  SHA512:
6
- metadata.gz: d9940cf07799f61c12e386799fbebd9273201a936b238d22d6fb9b75edf2e6e6588f19f4782856d6e28b521e89631da86becc791a6b95e5f691c786d7e27b0d4
7
- data.tar.gz: c362a553bdf45c253c2f1fa6c6f25d68da5108bde5cb59670ab759989077771671bb8ad89bdf4750c36440a67b0ac0049acdcadcec5176e5c6104906499d397e
6
+ metadata.gz: 8bd48968214009001630dba1b56e85df53727542fc9d458f09b551761e11526ca5b47b4877e766ecce2adcd18ded1269925b26fe6b83318c5a8cc13f537ffd1d
7
+ data.tar.gz: 536be7d70111183d392ec24e5690598e60d9b634a8584ea7f698ab6b10fd6b09006edeed51370be17ce7d6b99bfd2848589091724e9dca89c5c1b087cbb08b67
@@ -9,12 +9,19 @@ 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
+
13
+ ## [2.1.1] (2019-12-28)
14
+
15
+ ### Fixed
16
+
17
+ - Correct get dSYM binary file. #[19](https://github.com/icyleaf/app-info/pull/19)
18
+
12
19
  ## [2.1.0] (2019-10-31)
13
20
 
14
21
  ### Added
15
22
 
16
23
  - Added `.[]` and `missing_method` to find and match in `AppInfo::InfoPlist` and `AppInfo::MobileProvision'.
17
- - Added `AppInfo::MobileProvision.developer_certs` . #[17](https://github.com/icyleaf/app-info/pull/17)
24
+ - Added `AppInfo::MobileProvision.developer_certs`. #[17](https://github.com/icyleaf/app-info/pull/17)
18
25
 
19
26
  ## [2.0.0] (2019-10-29)
20
27
 
@@ -50,7 +57,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
50
57
 
51
58
  - Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed))
52
59
 
53
- [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.1.0..HEAD
60
+ [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.1.1..HEAD
61
+ [2.1.1]: https://github.com/icyleaf/app-info/compare/v2.1.0...v2.1.1
54
62
  [2.1.0]: https://github.com/icyleaf/app-info/compare/v2.0.0...v2.1.0
55
63
  [2.0.0]: https://github.com/icyleaf/app-info/compare/v1.1.2...v2.0.0
56
64
  [1.1.2]: https://github.com/icyleaf/app-info/compare/v1.0.5...v1.1.2
@@ -67,7 +67,7 @@ module AppInfo
67
67
  def app_path
68
68
  unless @app_path
69
69
  path = File.join(contents, 'Contents', 'Resources', 'DWARF')
70
- name = Dir.entries(path).last
70
+ name = Dir.entries(path).reject { |f| ['.', '..'].include?(f) }.first
71
71
  @app_path = File.join(path, name)
72
72
  end
73
73
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppInfo
4
- VERSION = '2.1.0'
4
+ VERSION = '2.1.1'
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.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - icyleaf
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-31 00:00:00.000000000 Z
11
+ date: 2019-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: CFPropertyList