ios-devices 0.3.0 → 0.3.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/lib/ios/devices/version.rb +1 -1
- data/lib/ios/devices.rb +24 -0
- 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: 41c2505bea9c84e5cca0ef25816c096628153dcf5a846f00b93995e6db2ffc05
|
|
4
|
+
data.tar.gz: 8cb2024ca512a2b82adfe1dbd8776370d8a9f916aa42bb12c02968b794132704
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66bb4f23232590a42806b2dff02fca37c4a49d2f2120331a1ead572a6fc584e91d869a213d351442381c678db5cce3ba441a9d0d960957e2c03ff6c834f42eb7
|
|
7
|
+
data.tar.gz: b922ee39ad26632673ef45c5e4a201eaa8b56a5f0f9a81c6f44738d129ee7229ba4235f442e89fc644accab2488c86b7d3f56c8a2019df96aa300e7374111da9
|
data/lib/ios/devices/version.rb
CHANGED
data/lib/ios/devices.rb
CHANGED
|
@@ -92,6 +92,22 @@ module Ios
|
|
|
92
92
|
Model.new(device_type, 'iPhone 13')
|
|
93
93
|
when 'iPhone14,6'
|
|
94
94
|
Model.new(device_type, 'iPhone SE', '3rd gen')
|
|
95
|
+
when 'iPhone14,7'
|
|
96
|
+
Model.new(device_type, 'iPhone 14')
|
|
97
|
+
when 'iPhone14,8'
|
|
98
|
+
Model.new(device_type, 'iPhone 14 Plus')
|
|
99
|
+
when 'iPhone15,2'
|
|
100
|
+
Model.new(device_type, 'iPhone 14 Pro')
|
|
101
|
+
when 'iPhone15,3'
|
|
102
|
+
Model.new(device_type, 'iPhone 14 Pro Max')
|
|
103
|
+
when 'iPhone15,4'
|
|
104
|
+
Model.new(device_type, 'iPhone 15')
|
|
105
|
+
when 'iPhone15,5'
|
|
106
|
+
Model.new(device_type, 'iPhone 15 Plus')
|
|
107
|
+
when 'iPhone16,1'
|
|
108
|
+
Model.new(device_type, 'iPhone 15 Pro')
|
|
109
|
+
when 'iPhone16,2'
|
|
110
|
+
Model.new(device_type, 'iPhone 15 Pro Max')
|
|
95
111
|
when 'iPad1,1'
|
|
96
112
|
Model.new(device_type, 'iPad')
|
|
97
113
|
when 'iPad2,1'
|
|
@@ -224,6 +240,14 @@ module Ios
|
|
|
224
240
|
Model.new(device_type, 'iPad mini 6', 'Wi-Fi')
|
|
225
241
|
when 'iPad14,2'
|
|
226
242
|
Model.new(device_type, 'iPad mini 6', 'Wi-Fi+LTE')
|
|
243
|
+
when 'iPad14,3'
|
|
244
|
+
Model.new(device_type, 'iPad Pro 11', '4th Gen, Wi-Fi')
|
|
245
|
+
when 'iPad14,4'
|
|
246
|
+
Model.new(device_type, 'iPad Pro 11', '4th Gen, Wi-Fi+LTE')
|
|
247
|
+
when 'iPad14,5'
|
|
248
|
+
Model.new(device_type, 'iPad Pro 12.9', '6th Gen, Wi-Fi')
|
|
249
|
+
when 'iPad14,6'
|
|
250
|
+
Model.new(device_type, 'iPad Pro 12.9', '6th Gen, Wi-Fi+LTE')
|
|
227
251
|
when 'iPod1,1'
|
|
228
252
|
Model.new(device_type, 'iPod touch')
|
|
229
253
|
when 'iPod2,1'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ios-devices
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ricardo Otero
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-10-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|