cocoapods-alexandria 0.2.7 → 0.2.8

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: 88c734b77b85da1fbb9ddc69826b130f6f5419e672c8932e74c4b7a23577cc07
4
- data.tar.gz: 1d965cef559cf052def03664683e0cad21c2dd86bfc365cd9ee36c1b458b078e
3
+ metadata.gz: c19c80e81e9b4539ec08ffbdb7396994387f4573489366c6448e7faa47fedef9
4
+ data.tar.gz: d0e271ac412f94fd696ed6c5cf804eef6399550ddff808f29afe0da1e622d0c8
5
5
  SHA512:
6
- metadata.gz: 959811b22d97086ed29852dda0d8d30b42cc94384312018f3c20e7797c78591b040cdd4e0d8d939d1e0c4c24469c528a0303b4feaa03af8753d4557aefbbc3b5
7
- data.tar.gz: 0e9109a517111fea85644ec751136e0676d130b5f345e7d1e0de9809e7a3895e6e6b7ea443a8a7c227903b3515237efee730547752d0d902c37b241c92ad0f52
6
+ metadata.gz: 4833167107e4c4417dbfee798e3586040beded30746a44194a20a4b76c29d887a537063cbdf8a75c7b9dde36f12dd942a5655fb22c0e76d486aad24592155dbd
7
+ data.tar.gz: '092626723d276d12c32c7dd739ef19c1357d664b34cb26ef06eeafdce6420999198ee20b6eb634fc4f6ac4cefd18241d4f711b5740b3df2b61fe7237df00a7f9'
@@ -1,3 +1,3 @@
1
1
  module CocoapodsAlexandria
2
- VERSION = '0.2.7'
2
+ VERSION = '0.2.8'
3
3
  end
@@ -56,13 +56,13 @@ module PodAlexandria
56
56
  def build_path(target, sdk)
57
57
  # Note: using target.product_name is wrong in some cases (Cocoapods project generation bug)
58
58
  # See https://github.com/CocoaPods/CocoaPods/issues/8007
59
- "#{build_dir}/#{configuration}-#{sdk}/#{target.name}/#{target.product_reference.name}"
59
+ "#{build_dir}/#{configuration}-#{sdk}/#{target.name}/#{target.product_reference.path}"
60
60
  end
61
61
 
62
62
  def destination_path(target)
63
63
  # Note: using target.product_name is wrong in some cases (Cocoapods project generation bug)
64
64
  # See https://github.com/CocoaPods/CocoaPods/issues/8007
65
- "#{destination}/#{target.product_reference.name}"
65
+ "#{destination}/#{target.product_reference.path}"
66
66
  end
67
67
  end
68
68
  end
@@ -49,7 +49,7 @@ module PodAlexandria
49
49
  compiler = Compiler.new(sandbox, build_dir, destination, configuration, flags)
50
50
  frameworks = umbrella_targets.select { |t| t.specs.any? }.flat_map { |target|
51
51
  compiler.build(target)
52
- }
52
+ }.uniq
53
53
 
54
54
  Pod::UI.info "🔥 Built #{frameworks.count} #{'frameworks'.pluralize(frameworks.count)}" unless frameworks.empty?
55
55
 
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.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Jennes