configure_extensions 1.0.1 → 1.1.0
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 +5 -5
- data/lib/configure_extensions/configure.rb +1 -1
- data/lib/configure_extensions/version.rb +1 -1
- metadata +3 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: c209819a9819b79c9714728c7c8d9c895e387dbfa6b27884eac5b17914e7b296
|
|
4
|
+
data.tar.gz: 657f39232de452d4de77307b08ee9ed352ab88c4f85f8a7c2e9c877f1953069a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8936066429cd304eb6a8414960a99c9b09905fe9a8d74b79c147aeda74675816a11f622897c9fd37ed07899a23618bf435d28a00517a395a1fb6aef422121d59
|
|
7
|
+
data.tar.gz: cf40582be5e48d1ac4ea856281b166118687527464769d34fcc44fbecc193160a66a40ee074d279e37b654201a85854bc6a6b54a24b699bde5dd6f135b4759ed
|
|
@@ -17,7 +17,7 @@ module ConfigureExtensions
|
|
|
17
17
|
extension_targets = extension_names.map do |ext|
|
|
18
18
|
target = xc.targets.find { |t| t.name == ext }
|
|
19
19
|
abort "Couldn't find a '#{ext}' target in '#{project_name}'" if target.nil?
|
|
20
|
-
abort "'#{ext}' doesn't seem to be an application extension target" unless target.product_type.include?
|
|
20
|
+
abort "'#{ext}' doesn't seem to be an application extension target" unless target.product_type.include?('app-extension') || target.product_type.include?('application.on-demand-install-capable')
|
|
21
21
|
target
|
|
22
22
|
end
|
|
23
23
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: configure_extensions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Radek Pietruszewski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -93,10 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
93
|
- !ruby/object:Gem::Version
|
|
94
94
|
version: '0'
|
|
95
95
|
requirements: []
|
|
96
|
-
|
|
97
|
-
rubygems_version: 2.4.5.1
|
|
96
|
+
rubygems_version: 3.1.4
|
|
98
97
|
signing_key:
|
|
99
98
|
specification_version: 4
|
|
100
99
|
summary: Add and remove app extensions from Xcode build
|
|
101
100
|
test_files: []
|
|
102
|
-
has_rdoc:
|