lib/pod_builder/command/build.rb in pod-builder-5.2.0 vs lib/pod_builder/command/build.rb in pod-builder-5.4.0

- old
+ new

@@ -52,14 +52,14 @@ argument_pods += pods_to_build.map(&:root_name) argument_pods.uniq! # We need to split pods to build in 4 groups - # 1. pods to build in release - # 2. pods to build in debug - # 3. pods to build in release as xcframeworks - # 4. pods to build in debug as xcframeworks + # 1. pods to build in debug + # 2. pods to build in release + # 3. pods to build in debug as xcframeworks + # 4. pods to build in release as xcframeworks check_not_building_development_pods(pods_to_build) # We need to recursively add dependencies to properly split pods in groups. # Example: @@ -79,12 +79,12 @@ pods_to_build_release -= pods_to_build_release_xcframework check_dependencies_build_configurations(all_buildable_items) # When building mixed framwork/xcframeworks pods xcframeworks should be built last - # so that the .xcframework overwrite the .framwork if the same pod needs to be built + # so that the .xcframework overwrite the .framework if the same pod needs to be built # in both ways. - # For example we might have configured to build onlt PodA as xcframework, another pod + # For example we might have configured to build only PodA as xcframework, another pod # PodB has a dependency to PodA. When Building PodB, PodA gets rebuilt as .framework # but then PodA gets rebuilt again as .xcframework overwriting the .framework. podfiles_items = [pods_to_build_debug] + [pods_to_build_release] + [pods_to_build_debug_xcframework] + [pods_to_build_release_xcframework] install_using_frameworks = Podfile::install_using_frameworks(analyzer)