cocoapods-rn-toolkit 0.0.12 → 0.0.13

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: 0d89d69ead6c507dcc7bdc1d4db02545e85f563c108d0e47d719a871082957d5
4
- data.tar.gz: 3e42dde2ec6f468f27ff8b567453c76fae6164bc1d4e265a30d45ba2f7c4b3b5
3
+ metadata.gz: 31a191ee21b84d1f5919b68ac249396adf65fb2d705deec8a28929d08c406142
4
+ data.tar.gz: bd860ff9631e499d2e383e740ae2813cb56f8a31c466442fde0556651dc9ea49
5
5
  SHA512:
6
- metadata.gz: 851aadfd12025cf9547c243a556d92f8cce943f1bf03d01981a3e5e43654c5fa803fc78f296b6189df95792e15dea4dfcdc727f22bbb04cbe475dd9b1cc4c0d7
7
- data.tar.gz: eb7ac1270dcc34236aebed67389bd42d7513df5c80ee9bca5ce11302a6c48c5990683b7bcae988f293a6f99aee31fcf84107481a08baa55a6b6d33caa088dd20
6
+ metadata.gz: 403bef152cc3cb9928997fe966b6c0d798afac9871e4b9771da49215df43a0950afac3ee771463c26b101ea70e077588dd8ad6868fc6d85b961034474a40f972
7
+ data.tar.gz: 150e32f9e9180f317bef458247de3b0f61e7d7e48fb1fd74c2142e18331a13824ca5fa77dcf27285a0df79da79e8d870447929393354824ee190f4fb36c7e917
@@ -1,3 +1,3 @@
1
1
  module CocoapodsRnToolkit
2
- VERSION = "0.0.12"
2
+ VERSION = "0.0.13"
3
3
  end
@@ -1,10 +1,14 @@
1
1
  module CocoapodsRnToolkit
2
2
  module LibrarySearchPaths
3
- def self.apply(installer)
4
- projects = installer.aggregate_targets
5
- .map{ |t| t.user_project }
6
- .uniq{ |p| p.path }
7
- .push(installer.pods_project)
3
+ def self.apply(context)
4
+ # 获取所有的用户项目
5
+ user_projects = context.umbrella_targets.map(&:user_project).uniq(&:path)
6
+
7
+ # 获取 Pods 项目
8
+ pods_project = context.pods_project
9
+
10
+ # 合并所有需要处理的项目
11
+ projects = user_projects + [pods_project]
8
12
 
9
13
  projects.each do |project|
10
14
  project.build_configurations.each do |config|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-rn-toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.12
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nx