adsedare 0.0.8 → 0.0.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0188667ec36408b4bd8e25d1396efcd88ccf529b54812a3b8b3120c40f6f56f1'
4
- data.tar.gz: 29d5b36a0868ee133de957963a7da00f7362d836fd76a3a5b4d63c40c861905b
3
+ metadata.gz: 5d212379c20e5b617e72240f0c85a3e278dc3224900aa1396eeab4f6285cf515
4
+ data.tar.gz: 605549cc1f8c4a293e900b961cc0a53b58157cbdddbb84f08847e8a98fa5da67
5
5
  SHA512:
6
- metadata.gz: 199c7941e00a2b71260ed190e0855742a10238e8c8265af59d60329cc99532fc0f22648955a04eda31debe0ed064a9f7fa633f79495a096bd051c7424278c2c5
7
- data.tar.gz: 553d74cd5cf5e3ab379d98bce99ff5bccd7a9fa6e27d99a0b9ca0e7570a09786da025953ebba162d4106e4b2720292da0bb60aa6cdb382e07ca0bffb3135cf79
6
+ metadata.gz: 95628e4cf84b9f1ecef880c892c6367549a07d136169f2dda1308fc79dd2e8bba326f25157391f875fe1ef1a08e05731115075982279aa471bf3e1cf351d3b67
7
+ data.tar.gz: e6e72667b14c6f705b14321380ee64b29a791c64b7b64167d36334a70429029d2424c3520ecc1b1107a565e084c13cd16011c8d6d9b731fd455f61ddd17de250
@@ -26,6 +26,8 @@ module Adsedare
26
26
  end
27
27
  end.flatten.uniq
28
28
 
29
+ puts project_bundles
30
+
29
31
  bundles_with_profiles = AppStoreConnect::Client.get_bundles_with_profiles(project_bundles)
30
32
  bundle_by_identifier = {}
31
33
  profiles_by_id = {}
@@ -58,6 +60,12 @@ module Adsedare
58
60
  profile_id = profile["id"]
59
61
  profile = profiles_by_id[profile_id]
60
62
 
63
+ profile_name = profile["attributes"]["name"]
64
+ # Xcode managed profiles can't be used for signing
65
+ if profile_name.start_with?("iOS Team Ad Hoc Provisioning Profile") || profile_name.start_with?("XC")
66
+ next
67
+ end
68
+
61
69
  if profile["attributes"]["profileType"] == "IOS_APP_ADHOC" && profile["attributes"]["profileState"] == "ACTIVE"
62
70
  ad_hoc_profile = profile
63
71
  break
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Adsedare
4
- VERSION = "0.0.8"
4
+ VERSION = "0.0.9"
5
5
  end
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.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - alexstrnik
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2025-07-08 00:00:00.000000000 Z
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.0.3.1
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: []