cocoapods-alexandria 0.3.1 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 778400b37fb78dad050f7ee507955274b1ffd89f6e3704eed01a3aeef7742b05
4
- data.tar.gz: 3a79829c2ccda4186b6cd0d878275ac9d49b8eeb3f2b927882adbd7cc25cee19
3
+ metadata.gz: 11edcd9eaf28efc830c478dd3988a6ca67c6546bcda107f158dc31ae643a29bf
4
+ data.tar.gz: 67f33e1a6b087633a6979dcba70483ca1454e216df7615af7aca686a2054775d
5
5
  SHA512:
6
- metadata.gz: 02b7727e93ad812d05d6000c3e4d997d6787039d528eefea22d59133b40e32eb4b57162baf651db799a6d7cbfb47ba91dfd6a471104c2f373ba587d1599be8d0
7
- data.tar.gz: 44128a09f9e4bde2b800cef50d48918ddadf5b0c19be88b64bc9f6a4fc5db047a6e910be8c5bb2c245154adde37a70ea79144233133cc5662b4e9e4dd36f5ba9
6
+ metadata.gz: 8c762cf5e15a27551d07b331f02349a771e5fefe4ee1f2f9100eb5eb35a784332595770e16a175041dd08ee6b15dfec17347010c136872a40b2adddd47da885b
7
+ data.tar.gz: 7d4f1e149a6d20ecb84a94c2180be2dd4efddac8c8eeb0d8c1b04aed21cd69ddd9f895a41fbfc32d18d3bceb79e33000420443fb0c5dd0f1841bdaf133f6deb2
@@ -20,6 +20,7 @@ module PodAlexandria
20
20
  pods_project.force_bitcode_generation
21
21
  end
22
22
  pods_project.fix_deployment_target_warnings(options.minimum_ios_version)
23
+ pods_project.fix_bundle_code_signing
23
24
  cache.delete_changed_frameworks
24
25
  cache.build_frameworks
25
26
  cache.cache_lockfile
@@ -12,6 +12,7 @@ module PodAlexandria
12
12
  def run
13
13
  Pod::UI.title "Tweaking CocoaPods for XcodeGen..."
14
14
  pods_project.fix_deployment_target_warnings(options.minimum_ios_version)
15
+ pods_project.fix_bundle_code_signing
15
16
  include_user_configs_in_pods_xcconfigs
16
17
  end
17
18
 
@@ -1,3 +1,3 @@
1
1
  module CocoapodsAlexandria
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
3
3
  end
@@ -16,6 +16,17 @@ module Xcodeproj
16
16
  save
17
17
  end
18
18
 
19
+ def fix_bundle_code_signing
20
+ targets.each do |target|
21
+ if target.respond_to?(:product_type) and target.product_type == 'com.apple.product-type.bundle'
22
+ target.build_configurations.each do |config|
23
+ config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
24
+ end
25
+ end
26
+ end
27
+ save
28
+ end
29
+
19
30
  def disable_bitcode_generation
20
31
  targets.each do |target|
21
32
  target.build_configurations.each do |config|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-alexandria
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Jennes