cocoapods 1.6.2 → 1.7.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +101 -7
  3. data/README.md +9 -9
  4. data/lib/cocoapods.rb +2 -0
  5. data/lib/cocoapods/command.rb +1 -1
  6. data/lib/cocoapods/command/init.rb +2 -12
  7. data/lib/cocoapods/command/install.rb +3 -0
  8. data/lib/cocoapods/command/lib/create.rb +1 -1
  9. data/lib/cocoapods/command/lib/lint.rb +5 -1
  10. data/lib/cocoapods/command/list.rb +3 -5
  11. data/lib/cocoapods/command/repo.rb +1 -0
  12. data/lib/cocoapods/command/repo/add.rb +4 -5
  13. data/lib/cocoapods/command/repo/add_cdn.rb +58 -0
  14. data/lib/cocoapods/command/repo/list.rb +5 -6
  15. data/lib/cocoapods/command/repo/push.rb +6 -5
  16. data/lib/cocoapods/command/spec/create.rb +12 -12
  17. data/lib/cocoapods/command/spec/lint.rb +1 -1
  18. data/lib/cocoapods/command/update.rb +3 -0
  19. data/lib/cocoapods/config.rb +1 -0
  20. data/lib/cocoapods/executable.rb +32 -7
  21. data/lib/cocoapods/gem_version.rb +1 -1
  22. data/lib/cocoapods/generator/app_target_helper.rb +1 -1
  23. data/lib/cocoapods/generator/embed_frameworks_script.rb +13 -0
  24. data/lib/cocoapods/generator/file_list.rb +39 -0
  25. data/lib/cocoapods/generator/module_map.rb +1 -1
  26. data/lib/cocoapods/installer.rb +188 -46
  27. data/lib/cocoapods/installer/analyzer.rb +64 -39
  28. data/lib/cocoapods/installer/analyzer/pod_variant.rb +14 -9
  29. data/lib/cocoapods/installer/analyzer/pod_variant_set.rb +11 -2
  30. data/lib/cocoapods/installer/installation_options.rb +70 -44
  31. data/lib/cocoapods/installer/pod_source_installer.rb +9 -4
  32. data/lib/cocoapods/installer/podfile_validator.rb +9 -0
  33. data/lib/cocoapods/installer/post_install_hooks_context.rb +5 -2
  34. data/lib/cocoapods/installer/project_cache/project_cache.rb +11 -0
  35. data/lib/cocoapods/installer/project_cache/project_cache_analysis_result.rb +53 -0
  36. data/lib/cocoapods/installer/project_cache/project_cache_analyzer.rb +156 -0
  37. data/lib/cocoapods/installer/project_cache/project_cache_version.rb +43 -0
  38. data/lib/cocoapods/installer/project_cache/project_installation_cache.rb +77 -0
  39. data/lib/cocoapods/installer/project_cache/project_metadata_cache.rb +63 -0
  40. data/lib/cocoapods/installer/project_cache/target_cache_key.rb +134 -0
  41. data/lib/cocoapods/installer/project_cache/target_metadata.rb +70 -0
  42. data/lib/cocoapods/installer/sandbox_dir_cleaner.rb +89 -0
  43. data/lib/cocoapods/installer/sandbox_header_paths_installer.rb +45 -0
  44. data/lib/cocoapods/installer/target_uuid_generator.rb +32 -0
  45. data/lib/cocoapods/installer/user_project_integrator.rb +8 -6
  46. data/lib/cocoapods/installer/user_project_integrator/target_integrator.rb +128 -63
  47. data/lib/cocoapods/installer/xcode.rb +3 -0
  48. data/lib/cocoapods/installer/xcode/multi_pods_project_generator.rb +72 -0
  49. data/lib/cocoapods/installer/xcode/pods_project_generator.rb +102 -218
  50. data/lib/cocoapods/installer/xcode/pods_project_generator/aggregate_target_dependency_installer.rb +75 -0
  51. data/lib/cocoapods/installer/xcode/pods_project_generator/aggregate_target_installer.rb +1 -1
  52. data/lib/cocoapods/installer/xcode/pods_project_generator/app_host_installer.rb +29 -17
  53. data/lib/cocoapods/installer/xcode/pods_project_generator/file_references_installer.rb +31 -65
  54. data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_dependency_installer.rb +155 -0
  55. data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_installer.rb +265 -110
  56. data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_integrator.rb +70 -43
  57. data/lib/cocoapods/installer/xcode/pods_project_generator/pods_project_writer.rb +75 -0
  58. data/lib/cocoapods/installer/xcode/pods_project_generator/project_generator.rb +119 -0
  59. data/lib/cocoapods/installer/xcode/pods_project_generator/target_installation_result.rb +44 -7
  60. data/lib/cocoapods/installer/xcode/pods_project_generator/target_installer.rb +5 -7
  61. data/lib/cocoapods/installer/xcode/pods_project_generator/target_installer_helper.rb +32 -0
  62. data/lib/cocoapods/installer/xcode/pods_project_generator_result.rb +35 -0
  63. data/lib/cocoapods/installer/xcode/single_pods_project_generator.rb +38 -0
  64. data/lib/cocoapods/installer/xcode/target_validator.rb +32 -25
  65. data/lib/cocoapods/native_target_extension.rb +54 -0
  66. data/lib/cocoapods/open-uri.rb +1 -1
  67. data/lib/cocoapods/podfile.rb +13 -0
  68. data/lib/cocoapods/project.rb +88 -10
  69. data/lib/cocoapods/resolver.rb +11 -8
  70. data/lib/cocoapods/resolver/resolver_specification.rb +7 -7
  71. data/lib/cocoapods/sandbox.rb +38 -9
  72. data/lib/cocoapods/sandbox/file_accessor.rb +21 -0
  73. data/lib/cocoapods/sandbox/headers_store.rb +18 -3
  74. data/lib/cocoapods/sandbox/pod_dir_cleaner.rb +1 -14
  75. data/lib/cocoapods/sources_manager.rb +11 -3
  76. data/lib/cocoapods/target.rb +67 -7
  77. data/lib/cocoapods/target/aggregate_target.rb +70 -8
  78. data/lib/cocoapods/target/build_settings.rb +124 -65
  79. data/lib/cocoapods/target/build_type.rb +139 -0
  80. data/lib/cocoapods/target/framework_paths.rb +12 -7
  81. data/lib/cocoapods/target/pod_target.rb +322 -65
  82. data/lib/cocoapods/user_interface.rb +2 -2
  83. data/lib/cocoapods/user_interface/error_report.rb +3 -0
  84. data/lib/cocoapods/user_interface/inspector_reporter.rb +1 -1
  85. data/lib/cocoapods/validator.rb +74 -39
  86. data/lib/cocoapods/version_metadata.rb +7 -0
  87. metadata +30 -6
@@ -397,9 +397,9 @@ module Pod
397
397
 
398
398
  # @return [String] Wraps a string taking into account the width of the
399
399
  # terminal and an option indent. Adapted from
400
- # http://blog.macromates.com/2006/wrapping-text-with-regular-expressions/
400
+ # https://macromates.com/blog/2006/wrapping-text-with-regular-expressions/
401
401
  #
402
- # @param [String] txt The string to wrap
402
+ # @param [String] string The string to wrap
403
403
  #
404
404
  # @param [String] indent The string to use to indent the result.
405
405
  #
@@ -117,6 +117,9 @@ EOS
117
117
  inspector = GhInspector::Inspector.new 'cocoapods', 'cocoapods'
118
118
  message_delegate = UserInterface::InspectorReporter.new
119
119
  inspector.search_exception exception, message_delegate
120
+ rescue => e
121
+ warn "Searching for inspections failed: #{e}"
122
+ nil
120
123
  end
121
124
 
122
125
  private
@@ -84,7 +84,7 @@ module Pod
84
84
  UI.puts ''
85
85
  end
86
86
 
87
- # Taken from http://stackoverflow.com/questions/195740/how-do-you-do-relative-time-in-rails
87
+ # Taken from https://stackoverflow.com/questions/195740/how-do-you-do-relative-time-in-rails
88
88
  def pretty_date(date_string)
89
89
  date = Time.parse(date_string)
90
90
  a = (Time.now - date).to_i
@@ -16,7 +16,7 @@ module Pod
16
16
 
17
17
  # The default version of Swift to use when linting pods
18
18
  #
19
- DEFAULT_SWIFT_VERSION = '3.2'.freeze
19
+ DEFAULT_SWIFT_VERSION = '4.0'.freeze
20
20
 
21
21
  # The valid platforms for linting
22
22
  #
@@ -125,6 +125,7 @@ module Pod
125
125
  $stdout.flush
126
126
 
127
127
  perform_linting
128
+ warn_for_dot_swift_file_deprecation
128
129
  perform_extensive_analysis(a_spec) if a_spec && !quick
129
130
 
130
131
  UI.puts ' -> '.send(result_color) << (a_spec ? a_spec.to_s : file.basename.to_s)
@@ -298,22 +299,12 @@ module Pod
298
299
  @validation_dir ||= Pathname(Dir.mktmpdir(['CocoaPods-Lint-', "-#{spec.name}"]))
299
300
  end
300
301
 
301
- # @return [String] the SWIFT_VERSION to use for validation.
302
+ # @return [String] The SWIFT_VERSION that should be used to validate the pod. This is set by passing the
303
+ # `--swift-version` parameter during validation.
302
304
  #
303
- def swift_version
304
- return @swift_version unless @swift_version.nil?
305
- if (version = spec.swift_version) || (version = dot_swift_version)
306
- @swift_version = version.to_s
307
- else
308
- DEFAULT_SWIFT_VERSION
309
- end
310
- end
311
-
312
- # Set the SWIFT_VERSION that should be used to validate the pod.
313
- #
314
- attr_writer :swift_version
305
+ attr_accessor :swift_version
315
306
 
316
- # @return [String] the SWIFT_VERSION in the .swift-version file or nil.
307
+ # @return [String] the SWIFT_VERSION within the .swift-version file or nil.
317
308
  #
318
309
  def dot_swift_version
319
310
  return unless file
@@ -322,6 +313,24 @@ module Pod
322
313
  swift_version_path.read.strip
323
314
  end
324
315
 
316
+ # @return [String] The derived Swift version to use for validation. The order of precedence is as follows:
317
+ # - The `--swift-version` parameter is always checked first and honored if passed.
318
+ # - The `swift_versions` DSL attribute within the podspec, in which case the latest version is always chosen.
319
+ # - The Swift version within the `.swift-version` file if present.
320
+ # - If none of the above are set then the `#DEFAULT_SWIFT_VERSION` is used.
321
+ #
322
+ def derived_swift_version
323
+ @derived_swift_version ||= begin
324
+ if !swift_version.nil?
325
+ swift_version
326
+ elsif version = spec.swift_versions.max || dot_swift_version
327
+ version.to_s
328
+ else
329
+ DEFAULT_SWIFT_VERSION
330
+ end
331
+ end
332
+ end
333
+
325
334
  # @return [Boolean] Whether any of the pod targets part of this validator use Swift or not.
326
335
  #
327
336
  def uses_swift?
@@ -341,6 +350,17 @@ module Pod
341
350
  @results.concat(linter.results.to_a)
342
351
  end
343
352
 
353
+ # Warns the user to delete the `.swift-version` file in favor of the `swift_versions` DSL attribute. This is
354
+ # intentionally not a lint warning since we do not want to break existing setups and instead just soft deprecate
355
+ # this slowly.
356
+ #
357
+ def warn_for_dot_swift_file_deprecation
358
+ if swift_version.nil? && (!spec.nil? && spec.swift_versions.empty?) && !dot_swift_version.nil?
359
+ UI.warn 'Usage of the `.swift_version` file has been deprecated! Please delete the file and use the ' \
360
+ "`swift_versions` attribute within your podspec instead.\n".yellow
361
+ end
362
+ end
363
+
344
364
  # Perform analysis for a given spec (or subspec)
345
365
  #
346
366
  def perform_extensive_analysis(spec)
@@ -447,43 +467,45 @@ module Pod
447
467
  return if spec.source.nil? || spec.source[:http].nil?
448
468
  url = URI(spec.source[:http])
449
469
  return if url.scheme == 'https' || url.scheme == 'file'
450
- warning('http', "The URL (`#{url}`) doesn't use the encrypted HTTPs protocol. " \
470
+ warning('http', "The URL (`#{url}`) doesn't use the encrypted HTTPS protocol. " \
451
471
  'It is crucial for Pods to be transferred over a secure protocol to protect your users from man-in-the-middle attacks. '\
452
472
  'This will be an error in future releases. Please update the URL to use https.')
453
473
  end
454
474
 
455
- # Performs validation for which version of Swift is used during validation.
475
+ # Performs validation for the version of Swift used during validation.
456
476
  #
457
- # An error will be displayed if the user has provided a `swift_version` attribute within the podspec but is also
458
- # using either `--swift-version` parameter or a `.swift-version with a different Swift version.
477
+ # An error will be displayed if the user has provided a `swift_versions` attribute within the podspec but is also
478
+ # using either `--swift-version` parameter or a `.swift-version` file with a Swift version that is not declared
479
+ # within the attribute.
459
480
  #
460
481
  # The user will be warned that the default version of Swift was used if the following things are true:
461
482
  # - The project uses Swift at all
462
483
  # - The user did not supply a Swift version via a parameter
463
- # - There is no `swift_version` attribute set within the specification
484
+ # - There is no `swift_versions` attribute set within the specification
464
485
  # - There is no `.swift-version` file present either.
465
486
  #
466
487
  def validate_swift_version
467
488
  return unless uses_swift?
468
- spec_swift_version = spec.swift_version
469
- unless spec_swift_version.nil?
489
+ spec_swift_versions = spec.swift_versions.map(&:to_s)
490
+ unless spec_swift_versions.empty?
470
491
  message = nil
471
- if !dot_swift_version.nil? && dot_swift_version != spec_swift_version.to_s
472
- message = "Specification `#{spec.name}` specifies an inconsistent `swift_version` (`#{spec_swift_version}`) compared to the one present in your `.swift-version` file (`#{dot_swift_version}`). " \
473
- 'Please remove the `.swift-version` file which is now deprecated and only use the `swift_version` attribute within your podspec.'
474
- elsif !@swift_version.nil? && @swift_version != spec_swift_version.to_s
475
- message = "Specification `#{spec.name}` specifies an inconsistent `swift_version` (`#{spec_swift_version}`) compared to the one passed during lint (`#{@swift_version}`)."
492
+ if !dot_swift_version.nil? && !spec_swift_versions.include?(dot_swift_version)
493
+ message = "Specification `#{spec.name}` specifies inconsistent `swift_versions` (#{spec_swift_versions.map { |s| "`#{s}`" }.to_sentence}) compared to the one present in your `.swift-version` file (`#{dot_swift_version}`). " \
494
+ 'Please remove the `.swift-version` file which is now deprecated and only use the `swift_versions` attribute within your podspec.'
495
+ elsif !swift_version.nil? && !spec_swift_versions.include?(swift_version)
496
+ message = "Specification `#{spec.name}` specifies inconsistent `swift_versions` (#{spec_swift_versions.map { |s| "`#{s}`" }.to_sentence}) compared to the one passed during lint (`#{swift_version}`)."
476
497
  end
477
498
  unless message.nil?
478
499
  error('swift', message)
479
500
  return
480
501
  end
481
502
  end
482
- if @swift_version.nil? && spec_swift_version.nil? && dot_swift_version.nil?
503
+
504
+ if swift_version.nil? && spec_swift_versions.empty? && dot_swift_version.nil?
483
505
  warning('swift',
484
506
  'The validator used ' \
485
- "Swift #{DEFAULT_SWIFT_VERSION} by default because no Swift version was specified. " \
486
- 'To specify a Swift version during validation, add the `swift_version` attribute in your podspec. ' \
507
+ "Swift `#{DEFAULT_SWIFT_VERSION}` by default because no Swift version was specified. " \
508
+ 'To specify a Swift version during validation, add the `swift_versions` attribute in your podspec. ' \
487
509
  'Note that usage of the `--swift-version` parameter or a `.swift-version` file is now deprecated.')
488
510
  end
489
511
  end
@@ -524,7 +546,7 @@ module Pod
524
546
  def create_app_project
525
547
  app_project = Xcodeproj::Project.new(validation_dir + 'App.xcodeproj')
526
548
  app_target = Pod::Generator::AppTargetHelper.add_app_target(app_project, consumer.platform_name, deployment_target)
527
- Pod::Generator::AppTargetHelper.add_swift_version(app_target, swift_version)
549
+ Pod::Generator::AppTargetHelper.add_swift_version(app_target, derived_swift_version)
528
550
  app_project.save
529
551
  app_project.recreate_user_schemes
530
552
  end
@@ -532,7 +554,7 @@ module Pod
532
554
  def add_app_project_import
533
555
  app_project = Xcodeproj::Project.open(validation_dir + 'App.xcodeproj')
534
556
  app_target = app_project.targets.first
535
- pod_target = @installer.pod_targets.find { |pt| pt.pod_name == spec.root.name }
557
+ pod_target = validation_pod_target
536
558
  Pod::Generator::AppTargetHelper.add_app_project_import(app_project, app_target, pod_target, consumer.platform_name)
537
559
  Pod::Generator::AppTargetHelper.add_xctest_search_paths(app_target) if @installer.pod_targets.any? { |pt| pt.spec_consumers.any? { |c| c.frameworks.include?('XCTest') } }
538
560
  Pod::Generator::AppTargetHelper.add_empty_swift_file(app_project, app_target) if @installer.pod_targets.any?(&:uses_swift?)
@@ -542,6 +564,12 @@ module Pod
542
564
  Xcodeproj::XCScheme.share_scheme(@installer.pods_project.path, pod_target.label) if shares_pod_target_xcscheme?(pod_target)
543
565
  end
544
566
 
567
+ # Returns the pod target for the pod being validated. Installation must have occurred before this can be invoked.
568
+ #
569
+ def validation_pod_target
570
+ @installer.pod_targets.find { |pt| pt.pod_name == spec.root.name }
571
+ end
572
+
545
573
  # It creates a podfile in memory and builds a library containing the pod
546
574
  # for all available platforms with xcodebuild.
547
575
  #
@@ -560,11 +588,19 @@ module Pod
560
588
  native_target = pod_target_installation_result.native_target
561
589
  native_target.build_configuration_list.build_configurations.each do |build_configuration|
562
590
  (build_configuration.build_settings['OTHER_CFLAGS'] ||= '$(inherited)') << ' -Wincomplete-umbrella'
563
- build_configuration.build_settings['SWIFT_VERSION'] = (pod_target.swift_version || swift_version) if pod_target.uses_swift?
591
+ if pod_target.uses_swift?
592
+ # The Swift version for the target being validated can be overridden by `--swift-version` or the
593
+ # `.swift-version` file so we always use the derived Swift version. For dependencies, we always use the
594
+ # Swift version they specify, unless they don't in which case it will be inferred by the target that is
595
+ # integrating them.
596
+ swift_version = pod_target == validation_pod_target ? derived_swift_version : pod_target.swift_version
597
+ build_configuration.build_settings['SWIFT_VERSION'] = swift_version
598
+ end
564
599
  end
565
- pod_target_installation_result.test_specs_by_native_target.each do |test_native_target, test_specs|
566
- if pod_target.uses_swift_for_test_spec?(test_specs.first)
600
+ pod_target_installation_result.test_specs_by_native_target.each do |test_native_target, test_spec|
601
+ if pod_target.uses_swift_for_spec?(test_spec)
567
602
  test_native_target.build_configuration_list.build_configurations.each do |build_configuration|
603
+ swift_version = pod_target == validation_pod_target ? derived_swift_version : pod_target.swift_version
568
604
  build_configuration.build_settings['SWIFT_VERSION'] = swift_version
569
605
  end
570
606
  end
@@ -606,8 +642,7 @@ module Pod
606
642
  else
607
643
  UI.message "\nBuilding with `xcodebuild`.\n".yellow do
608
644
  scheme = if skip_import_validation?
609
- pod_target = @installer.pod_targets.find { |pt| pt.pod_name == spec.root.name }
610
- pod_target.label if pod_target.should_build?
645
+ validation_pod_target.label if validation_pod_target.should_build?
611
646
  else
612
647
  'App'
613
648
  end
@@ -634,7 +669,7 @@ module Pod
634
669
  UI.warn "Skipping test validation with `xcodebuild` because it can't be found.\n".yellow
635
670
  else
636
671
  UI.message "\nTesting with `xcodebuild`.\n".yellow do
637
- pod_target = @installer.pod_targets.find { |pt| pt.pod_name == spec.root.name }
672
+ pod_target = validation_pod_target
638
673
  consumer.spec.test_specs.each do |test_spec|
639
674
  if !test_spec.supported_on_platform?(consumer.platform_name)
640
675
  UI.warn "Skipping test spec `#{test_spec.name}` on platform `#{consumer.platform_name}` since it is not supported.\n".yellow
@@ -971,7 +1006,7 @@ module Pod
971
1006
  # @param [Platform] platform
972
1007
  # The platform to check
973
1008
  #
974
- # @param [Specification] specification
1009
+ # @param [Specification] spec
975
1010
  # The specification which must support the provided platform
976
1011
  #
977
1012
  # @return [Bool] Whether the platform is supported by the specification
@@ -0,0 +1,7 @@
1
+ module Pod
2
+ module VersionMetadata
3
+ def self.gem_version
4
+ Pod::VERSION
5
+ end
6
+ end
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.2
4
+ version: 1.7.0.beta.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2019-05-15 00:00:00.000000000 Z
14
+ date: 2019-02-22 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: cocoapods-core
@@ -19,14 +19,14 @@ dependencies:
19
19
  requirements:
20
20
  - - '='
21
21
  - !ruby/object:Gem::Version
22
- version: 1.6.2
22
+ version: 1.7.0.beta.1
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 1.6.2
29
+ version: 1.7.0.beta.1
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: claide
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -53,7 +53,7 @@ dependencies:
53
53
  requirements:
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
- version: 1.0.2
56
+ version: 1.0.3
57
57
  - - "<"
58
58
  - !ruby/object:Gem::Version
59
59
  version: '2.0'
@@ -63,7 +63,7 @@ dependencies:
63
63
  requirements:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
- version: 1.0.2
66
+ version: 1.0.3
67
67
  - - "<"
68
68
  - !ruby/object:Gem::Version
69
69
  version: '2.0'
@@ -419,6 +419,7 @@ files:
419
419
  - lib/cocoapods/command/outdated.rb
420
420
  - lib/cocoapods/command/repo.rb
421
421
  - lib/cocoapods/command/repo/add.rb
422
+ - lib/cocoapods/command/repo/add_cdn.rb
422
423
  - lib/cocoapods/command/repo/lint.rb
423
424
  - lib/cocoapods/command/repo/list.rb
424
425
  - lib/cocoapods/command/repo/push.rb
@@ -455,6 +456,7 @@ files:
455
456
  - lib/cocoapods/generator/copy_resources_script.rb
456
457
  - lib/cocoapods/generator/dummy_source.rb
457
458
  - lib/cocoapods/generator/embed_frameworks_script.rb
459
+ - lib/cocoapods/generator/file_list.rb
458
460
  - lib/cocoapods/generator/header.rb
459
461
  - lib/cocoapods/generator/info_plist_file.rb
460
462
  - lib/cocoapods/generator/module_map.rb
@@ -478,22 +480,42 @@ files:
478
480
  - lib/cocoapods/installer/podfile_validator.rb
479
481
  - lib/cocoapods/installer/post_install_hooks_context.rb
480
482
  - lib/cocoapods/installer/pre_install_hooks_context.rb
483
+ - lib/cocoapods/installer/project_cache/project_cache.rb
484
+ - lib/cocoapods/installer/project_cache/project_cache_analysis_result.rb
485
+ - lib/cocoapods/installer/project_cache/project_cache_analyzer.rb
486
+ - lib/cocoapods/installer/project_cache/project_cache_version.rb
487
+ - lib/cocoapods/installer/project_cache/project_installation_cache.rb
488
+ - lib/cocoapods/installer/project_cache/project_metadata_cache.rb
489
+ - lib/cocoapods/installer/project_cache/target_cache_key.rb
490
+ - lib/cocoapods/installer/project_cache/target_metadata.rb
491
+ - lib/cocoapods/installer/sandbox_dir_cleaner.rb
492
+ - lib/cocoapods/installer/sandbox_header_paths_installer.rb
481
493
  - lib/cocoapods/installer/source_provider_hooks_context.rb
494
+ - lib/cocoapods/installer/target_uuid_generator.rb
482
495
  - lib/cocoapods/installer/user_project_integrator.rb
483
496
  - lib/cocoapods/installer/user_project_integrator/target_integrator.rb
484
497
  - lib/cocoapods/installer/user_project_integrator/target_integrator/xcconfig_integrator.rb
485
498
  - lib/cocoapods/installer/xcode.rb
499
+ - lib/cocoapods/installer/xcode/multi_pods_project_generator.rb
486
500
  - lib/cocoapods/installer/xcode/pods_project_generator.rb
501
+ - lib/cocoapods/installer/xcode/pods_project_generator/aggregate_target_dependency_installer.rb
487
502
  - lib/cocoapods/installer/xcode/pods_project_generator/aggregate_target_installer.rb
488
503
  - lib/cocoapods/installer/xcode/pods_project_generator/app_host_installer.rb
489
504
  - lib/cocoapods/installer/xcode/pods_project_generator/file_references_installer.rb
505
+ - lib/cocoapods/installer/xcode/pods_project_generator/pod_target_dependency_installer.rb
490
506
  - lib/cocoapods/installer/xcode/pods_project_generator/pod_target_installer.rb
491
507
  - lib/cocoapods/installer/xcode/pods_project_generator/pod_target_integrator.rb
508
+ - lib/cocoapods/installer/xcode/pods_project_generator/pods_project_writer.rb
509
+ - lib/cocoapods/installer/xcode/pods_project_generator/project_generator.rb
492
510
  - lib/cocoapods/installer/xcode/pods_project_generator/target_installation_result.rb
493
511
  - lib/cocoapods/installer/xcode/pods_project_generator/target_installer.rb
494
512
  - lib/cocoapods/installer/xcode/pods_project_generator/target_installer_helper.rb
513
+ - lib/cocoapods/installer/xcode/pods_project_generator_result.rb
514
+ - lib/cocoapods/installer/xcode/single_pods_project_generator.rb
495
515
  - lib/cocoapods/installer/xcode/target_validator.rb
516
+ - lib/cocoapods/native_target_extension.rb
496
517
  - lib/cocoapods/open-uri.rb
518
+ - lib/cocoapods/podfile.rb
497
519
  - lib/cocoapods/project.rb
498
520
  - lib/cocoapods/resolver.rb
499
521
  - lib/cocoapods/resolver/lazy_specification.rb
@@ -508,12 +530,14 @@ files:
508
530
  - lib/cocoapods/target.rb
509
531
  - lib/cocoapods/target/aggregate_target.rb
510
532
  - lib/cocoapods/target/build_settings.rb
533
+ - lib/cocoapods/target/build_type.rb
511
534
  - lib/cocoapods/target/framework_paths.rb
512
535
  - lib/cocoapods/target/pod_target.rb
513
536
  - lib/cocoapods/user_interface.rb
514
537
  - lib/cocoapods/user_interface/error_report.rb
515
538
  - lib/cocoapods/user_interface/inspector_reporter.rb
516
539
  - lib/cocoapods/validator.rb
540
+ - lib/cocoapods/version_metadata.rb
517
541
  homepage: https://github.com/CocoaPods/CocoaPods
518
542
  licenses:
519
543
  - MIT