app-info 2.1.0 → 2.1.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 +4 -4
- data/CHANGELOG.md +10 -2
- data/lib/app_info/dsym.rb +1 -1
- data/lib/app_info/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cffe87f63672515e5bd9dc2654218ddc2a9de0cde184bd27e47bd6923618d565
|
|
4
|
+
data.tar.gz: d96f0e38be72d9e2918e6679e6d03f4cabd9c4901b02c79b9f4a172bba04e349
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bd48968214009001630dba1b56e85df53727542fc9d458f09b551761e11526ca5b47b4877e766ecce2adcd18ded1269925b26fe6b83318c5a8cc13f537ffd1d
|
|
7
|
+
data.tar.gz: 536be7d70111183d392ec24e5690598e60d9b634a8584ea7f698ab6b10fd6b09006edeed51370be17ce7d6b99bfd2848589091724e9dca89c5c1b087cbb08b67
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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.
|
|
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
|
data/lib/app_info/dsym.rb
CHANGED
|
@@ -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).
|
|
70
|
+
name = Dir.entries(path).reject { |f| ['.', '..'].include?(f) }.first
|
|
71
71
|
@app_path = File.join(path, name)
|
|
72
72
|
end
|
|
73
73
|
|
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.1.
|
|
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-
|
|
11
|
+
date: 2019-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: CFPropertyList
|