app-info 3.1.0 → 3.1.2
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/lib/app_info/mobile_provision.rb +6 -2
- 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: d19b4dd8fa9daefa43b37fc811ea5a3b4e763862a6327c54a76a81a69616ccc9
|
|
4
|
+
data.tar.gz: f5a42ba89a7f733eba69883f33d2c9c7adcc2194c747fdec03b10a053b3b7161
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86e6e2c9b76d10325b3f6c61fb7bacf59627e1785f1c5f92e53dce1adadc13070ffcab772b53ad80264dbfc1a72dd9e981a66d4d175a7c806fdd1ae883b79c78
|
|
7
|
+
data.tar.gz: 909e828acbfd036171e8dd6e9e3ba32757f20e68360777e8f5d85e9be32fd62ef3c421cbc9a6f116c03a931a57fdd5dee23fdd294769a5ba25cbbd451f383915
|
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
|
+
## [3.1.2] (2024-06-25)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Detect tvos for mobile provision.
|
|
17
|
+
|
|
12
18
|
## [3.1.0] (2024-06-24)
|
|
13
19
|
|
|
14
20
|
Dropped Ruby 2.5 ~ 3.0 support (no changes required.).
|
|
@@ -336,7 +342,8 @@ Dropped Ruby 2.5 ~ 3.0 support (no changes required.).
|
|
|
336
342
|
|
|
337
343
|
- Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed))
|
|
338
344
|
|
|
339
|
-
[Unreleased]: https://github.com/icyleaf/app-info/compare/v3.1.
|
|
345
|
+
[Unreleased]: https://github.com/icyleaf/app-info/compare/v3.1.2..HEAD
|
|
346
|
+
[3.1.2]: https://github.com/icyleaf/app-info/compare/v3.1.0...v3.1.2
|
|
340
347
|
[3.1.0]: https://github.com/icyleaf/app-info/compare/v3.0.0...v3.1.0
|
|
341
348
|
[3.0.0]: https://github.com/icyleaf/app-info/compare/v2.8.5...v3.0.0
|
|
342
349
|
[3.0.0.beta4]: https://github.com/icyleaf/app-info/compare/v3.0.0.beta3...v3.0.0.beta4
|
|
@@ -19,6 +19,8 @@ module AppInfo
|
|
|
19
19
|
Platform::MACOS
|
|
20
20
|
when :ios
|
|
21
21
|
Platform::IOS
|
|
22
|
+
when :tvos
|
|
23
|
+
Platform::APPLETV
|
|
22
24
|
else
|
|
23
25
|
raise NotImplementedError, "Unkonwn platform: #{platforms[0]}"
|
|
24
26
|
end
|
|
@@ -113,7 +115,7 @@ module AppInfo
|
|
|
113
115
|
# @return [Boolea]
|
|
114
116
|
def development?
|
|
115
117
|
case platform
|
|
116
|
-
when Platform::IOS
|
|
118
|
+
when Platform::IOS, Platform::APPLETV
|
|
117
119
|
entitlements['get-task-allow'] == true
|
|
118
120
|
when Platform::MACOS
|
|
119
121
|
!devices.nil?
|
|
@@ -128,7 +130,7 @@ module AppInfo
|
|
|
128
130
|
# @return [Boolea]
|
|
129
131
|
def appstore?
|
|
130
132
|
case platform
|
|
131
|
-
when Platform::IOS
|
|
133
|
+
when Platform::IOS, Platform::APPLETV
|
|
132
134
|
!development? && entitlements.key?('beta-reports-active')
|
|
133
135
|
when Platform::MACOS
|
|
134
136
|
!development?
|
|
@@ -216,6 +218,8 @@ module AppInfo
|
|
|
216
218
|
capabilities << 'Low Latency HLS'
|
|
217
219
|
when 'com.apple.developer.associated-domains.mdm-managed'
|
|
218
220
|
capabilities << 'MDM Managed Associated Domains'
|
|
221
|
+
when 'keychain-access-groups'
|
|
222
|
+
capabilities << 'Keychain Sharing'
|
|
219
223
|
# macOS Only
|
|
220
224
|
when 'com.apple.developer.maps'
|
|
221
225
|
capabilities << 'Maps'
|
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: 3.1.
|
|
4
|
+
version: 3.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- icyleaf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-06-
|
|
11
|
+
date: 2024-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: CFPropertyList
|