adsedare 0.0.8 → 0.0.10
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/adsedare/export_options.rb +6 -0
- data/lib/adsedare/install_profiles.rb +6 -0
- data/lib/adsedare/version.rb +1 -1
- data/lib/adsedare/xcodeproj.rb +6 -0
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3ac38b5f1f3cf548eb58c27a2db983cc3e97cd99652aec82198906dee5d2ba1
|
4
|
+
data.tar.gz: eec1c6d947e1f94ed07d35a4ddae5a5918c24cf96d5bf92c51ec81f19cdf7310
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ea609f14837a585f27bfd3507f6430b814004aa72f83f3a242403973bce85819c538b618e2cc667c9d554b9f2c9f837f20ed6b01d86ad612c6724252e7461cf
|
7
|
+
data.tar.gz: b82fdb1d28f39c0e923e918538acdcc11d41fa9fea49169408afe75255d35b186a016fdcaccd25a0f63248fb4e731721c50c5968cb305e1146f822956e2df944
|
@@ -77,6 +77,12 @@ module Adsedare
|
|
77
77
|
profile_id = profile["id"]
|
78
78
|
profile = profiles_by_id[profile_id]
|
79
79
|
|
80
|
+
profile_name = profile["attributes"]["name"]
|
81
|
+
# Xcode managed profiles can't be used for signing
|
82
|
+
if profile_name.start_with?("iOS Team Ad Hoc Provisioning Profile") || profile_name.start_with?("XC")
|
83
|
+
next
|
84
|
+
end
|
85
|
+
|
80
86
|
if profile["attributes"]["profileType"] == "IOS_APP_ADHOC" && profile["attributes"]["profileState"] == "ACTIVE"
|
81
87
|
ad_hoc_profile = profile
|
82
88
|
break
|
@@ -58,6 +58,12 @@ module Adsedare
|
|
58
58
|
profile_id = profile["id"]
|
59
59
|
profile = profiles_by_id[profile_id]
|
60
60
|
|
61
|
+
profile_name = profile["attributes"]["name"]
|
62
|
+
# Xcode managed profiles can't be used for signing
|
63
|
+
if profile_name.start_with?("iOS Team Ad Hoc Provisioning Profile") || profile_name.start_with?("XC")
|
64
|
+
next
|
65
|
+
end
|
66
|
+
|
61
67
|
if profile["attributes"]["profileType"] == "IOS_APP_ADHOC" && profile["attributes"]["profileState"] == "ACTIVE"
|
62
68
|
ad_hoc_profile = profile
|
63
69
|
break
|
data/lib/adsedare/version.rb
CHANGED
data/lib/adsedare/xcodeproj.rb
CHANGED
@@ -63,6 +63,12 @@ module Adsedare
|
|
63
63
|
profile_id = profile["id"]
|
64
64
|
profile = profiles_by_id[profile_id]
|
65
65
|
|
66
|
+
profile_name = profile["attributes"]["name"]
|
67
|
+
# Xcode managed profiles can't be used for signing
|
68
|
+
if profile_name.start_with?("iOS Team Ad Hoc Provisioning Profile") || profile_name.start_with?("XC")
|
69
|
+
next
|
70
|
+
end
|
71
|
+
|
66
72
|
if profile["attributes"]["profileType"] == "IOS_APP_ADHOC" && profile["attributes"]["profileState"] == "ACTIVE"
|
67
73
|
ad_hoc_profile = profile
|
68
74
|
break
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: adsedare
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alexstrnik
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
10
|
+
date: 2025-07-23 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rake
|
@@ -144,7 +143,6 @@ licenses:
|
|
144
143
|
metadata:
|
145
144
|
homepage_uri: https://github.com/AlexStrNik/AdSedare
|
146
145
|
source_code_uri: https://github.com/AlexStrNik/AdSedare
|
147
|
-
post_install_message:
|
148
146
|
rdoc_options: []
|
149
147
|
require_paths:
|
150
148
|
- lib
|
@@ -159,8 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
157
|
- !ruby/object:Gem::Version
|
160
158
|
version: '0'
|
161
159
|
requirements: []
|
162
|
-
rubygems_version: 3.
|
163
|
-
signing_key:
|
160
|
+
rubygems_version: 3.6.3
|
164
161
|
specification_version: 4
|
165
162
|
summary: A cross-platform library for seamless, pain-free iOS ad-hoc distribution.
|
166
163
|
test_files: []
|