pod-builder 0.7.6 → 0.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 92b528fa360bc78bb878c9a48480c3ab2b3a124ea10dc52ff2260c46c0132277
4
- data.tar.gz: ec21c73ef7b83379ef619d483e5583f5031f319903c128b35eca7c135dba271a
3
+ metadata.gz: 90f0645df06aec79b82eec983cfad9a85597f862d7fcdc9581eb384143fe791b
4
+ data.tar.gz: 410dae78a46ecd1f5aa9fee1ad62dc8a97ea1d816b47b535d4b4ef58d1bd1c52
5
5
  SHA512:
6
- metadata.gz: 3204cc3153ce8968adbfcfcb39f2b567b191eef3e44d3c9f2442ed813424a917aeec0d4dbb003ee6e7db2513a44899f5fd0583be0d6980005603a8ad183c6d12
7
- data.tar.gz: 979bb437c44720285f42abcd3533dd747ba0ed05cbae64c1131f3ab5d5a49d4c904df4f8c3dbb7cd5760262596f372d5013b17662fe1bf45d5527d1a2404fa3c
6
+ metadata.gz: 1b21b0a478ae6d0dbe054c69022dda13a8a5ca26e1a415c73f6fe66a98988764e811c479b9cc0e9d0930bfc4174a3938e02594d5ac2c61c4ac7265073b9e7893
7
+ data.tar.gz: bf54f791d4c6742d10a6729f23cc520c9dd7cae87eae52755475c7587c5a0acd220754c9d44e2fc183708c6ccd7280b87a97a0b098f2607c79358e38d688b738
@@ -45,10 +45,6 @@ module PodBuilder
45
45
  pods_to_build = resolve_pods_to_build(argument_pods, buildable_items, options)
46
46
  buildable_items -= pods_to_build
47
47
 
48
- # Remove dependencies from pods to build
49
- all_dependencies_name = pods_to_build.map(&:dependency_names).flatten.uniq
50
- pods_to_build.select! { |x| !all_dependencies_name.include?(x.name) }
51
-
52
48
  # We need to split pods to build in 3 groups
53
49
  # 1. subspecs: because the resulting .framework path is treated differently when added to Configuration.subspecs_to_split
54
50
  # 2. pods to build in release
@@ -57,6 +53,11 @@ module PodBuilder
57
53
  check_not_building_development_pods(pods_to_build)
58
54
 
59
55
  pods_to_build_subspecs = pods_to_build.select { |x| x.is_subspec && Configuration.subspecs_to_split.include?(x.name) }
56
+
57
+ # Remove dependencies from pods to build
58
+ all_dependencies_name = pods_to_build.map(&:dependency_names).flatten.uniq
59
+ pods_to_build.select! { |x| !all_dependencies_name.include?(x.name) }
60
+
60
61
  pods_to_build -= pods_to_build_subspecs
61
62
  pods_to_build_debug = pods_to_build.select { |x| x.build_configuration == "debug" }
62
63
  pods_to_build_release = pods_to_build - pods_to_build_debug
@@ -1,4 +1,4 @@
1
1
  module PodBuilder
2
- VERSION = "0.7.6"
2
+ VERSION = "0.8.0"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pod-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.6
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomas Camin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-22 00:00:00.000000000 Z
11
+ date: 2019-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler