cocoapods 1.5.3 → 1.6.0.beta.1

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.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +200 -0
  3. data/lib/cocoapods.rb +0 -1
  4. data/lib/cocoapods/command/init.rb +1 -1
  5. data/lib/cocoapods/command/install.rb +7 -0
  6. data/lib/cocoapods/command/lib/lint.rb +8 -1
  7. data/lib/cocoapods/command/outdated.rb +2 -7
  8. data/lib/cocoapods/command/repo/add.rb +1 -1
  9. data/lib/cocoapods/command/repo/list.rb +1 -1
  10. data/lib/cocoapods/command/repo/push.rb +17 -12
  11. data/lib/cocoapods/command/repo/remove.rb +1 -1
  12. data/lib/cocoapods/command/repo/update.rb +1 -1
  13. data/lib/cocoapods/command/setup.rb +1 -1
  14. data/lib/cocoapods/command/spec/create.rb +39 -39
  15. data/lib/cocoapods/command/spec/lint.rb +8 -1
  16. data/lib/cocoapods/config.rb +13 -2
  17. data/lib/cocoapods/downloader/cache.rb +1 -1
  18. data/lib/cocoapods/executable.rb +2 -2
  19. data/lib/cocoapods/external_sources.rb +7 -4
  20. data/lib/cocoapods/external_sources/abstract_external_source.rb +23 -13
  21. data/lib/cocoapods/gem_version.rb +1 -1
  22. data/lib/cocoapods/generator/acknowledgements/markdown.rb +6 -0
  23. data/lib/cocoapods/generator/acknowledgements/plist.rb +11 -0
  24. data/lib/cocoapods/generator/app_target_helper.rb +102 -16
  25. data/lib/cocoapods/generator/copy_resources_script.rb +6 -0
  26. data/lib/cocoapods/generator/dummy_source.rb +14 -5
  27. data/lib/cocoapods/generator/embed_frameworks_script.rb +13 -2
  28. data/lib/cocoapods/generator/header.rb +1 -1
  29. data/lib/cocoapods/generator/info_plist_file.rb +12 -4
  30. data/lib/cocoapods/generator/prefix_header.rb +2 -2
  31. data/lib/cocoapods/hooks_manager.rb +28 -17
  32. data/lib/cocoapods/installer.rb +103 -42
  33. data/lib/cocoapods/installer/analyzer.rb +362 -277
  34. data/lib/cocoapods/installer/analyzer/analysis_result.rb +52 -22
  35. data/lib/cocoapods/installer/analyzer/locking_dependency_analyzer.rb +9 -6
  36. data/lib/cocoapods/installer/analyzer/pod_variant.rb +4 -5
  37. data/lib/cocoapods/installer/analyzer/sandbox_analyzer.rb +3 -14
  38. data/lib/cocoapods/installer/analyzer/specs_state.rb +28 -4
  39. data/lib/cocoapods/installer/analyzer/target_inspection_result.rb +24 -16
  40. data/lib/cocoapods/installer/analyzer/target_inspector.rb +17 -11
  41. data/lib/cocoapods/installer/pod_source_installer.rb +31 -43
  42. data/lib/cocoapods/installer/post_install_hooks_context.rb +71 -46
  43. data/lib/cocoapods/installer/pre_install_hooks_context.rb +22 -13
  44. data/lib/cocoapods/installer/source_provider_hooks_context.rb +3 -1
  45. data/lib/cocoapods/installer/user_project_integrator.rb +0 -2
  46. data/lib/cocoapods/installer/user_project_integrator/target_integrator.rb +38 -28
  47. data/lib/cocoapods/installer/user_project_integrator/target_integrator/xcconfig_integrator.rb +44 -11
  48. data/lib/cocoapods/installer/xcode/pods_project_generator.rb +129 -119
  49. data/lib/cocoapods/installer/xcode/pods_project_generator/aggregate_target_installer.rb +25 -16
  50. data/lib/cocoapods/installer/xcode/pods_project_generator/app_host_installer.rb +95 -0
  51. data/lib/cocoapods/installer/xcode/pods_project_generator/file_references_installer.rb +12 -45
  52. data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_installer.rb +277 -169
  53. data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_integrator.rb +31 -24
  54. data/lib/cocoapods/installer/xcode/pods_project_generator/target_installation_result.rb +93 -0
  55. data/lib/cocoapods/installer/xcode/pods_project_generator/target_installer.rb +60 -69
  56. data/lib/cocoapods/installer/xcode/pods_project_generator/target_installer_helper.rb +72 -0
  57. data/lib/cocoapods/installer/xcode/target_validator.rb +15 -9
  58. data/lib/cocoapods/project.rb +14 -14
  59. data/lib/cocoapods/resolver.rb +38 -50
  60. data/lib/cocoapods/sandbox.rb +22 -38
  61. data/lib/cocoapods/sandbox/file_accessor.rb +11 -6
  62. data/lib/cocoapods/sandbox/headers_store.rb +9 -8
  63. data/lib/cocoapods/sandbox/path_list.rb +5 -8
  64. data/lib/cocoapods/sources_manager.rb +1 -1
  65. data/lib/cocoapods/target.rb +92 -37
  66. data/lib/cocoapods/target/aggregate_target.rb +140 -84
  67. data/lib/cocoapods/target/build_settings.rb +1076 -0
  68. data/lib/cocoapods/target/pod_target.rb +198 -294
  69. data/lib/cocoapods/user_interface.rb +5 -0
  70. data/lib/cocoapods/validator.rb +133 -41
  71. metadata +18 -18
  72. data/lib/cocoapods/generator/xcconfig.rb +0 -13
  73. data/lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb +0 -260
  74. data/lib/cocoapods/generator/xcconfig/pod_xcconfig.rb +0 -87
  75. data/lib/cocoapods/generator/xcconfig/xcconfig_helper.rb +0 -558
@@ -62,6 +62,7 @@ module Pod
62
62
  self.indentation_level += relative_indentation
63
63
  self.title_level += 1
64
64
  yield if block_given?
65
+ ensure
65
66
  self.indentation_level -= relative_indentation
66
67
  self.title_level -= 1
67
68
  end
@@ -83,6 +84,7 @@ module Pod
83
84
  self.indentation_level += relative_indentation
84
85
  self.title_level += 1
85
86
  yield if block_given?
87
+ ensure
86
88
  self.indentation_level -= relative_indentation
87
89
  self.title_level -= 1
88
90
  end
@@ -114,6 +116,7 @@ module Pod
114
116
  self.indentation_level += relative_indentation
115
117
  self.title_level += 1
116
118
  yield if block_given?
119
+ ensure
117
120
  self.indentation_level -= relative_indentation
118
121
  self.title_level -= 1
119
122
  end
@@ -140,6 +143,7 @@ module Pod
140
143
 
141
144
  self.indentation_level += relative_indentation
142
145
  yield if block_given?
146
+ ensure
143
147
  self.indentation_level -= relative_indentation
144
148
  end
145
149
 
@@ -160,6 +164,7 @@ module Pod
160
164
  self.indentation_level += 2
161
165
  @treat_titles_as_messages = true
162
166
  yield if block_given?
167
+ ensure
163
168
  @treat_titles_as_messages = false
164
169
  self.indentation_level -= 2
165
170
  end
@@ -18,6 +18,10 @@ module Pod
18
18
  #
19
19
  DEFAULT_SWIFT_VERSION = '3.2'.freeze
20
20
 
21
+ # The valid platforms for linting
22
+ #
23
+ VALID_PLATFORMS = Platform.all.freeze
24
+
21
25
  # @return [Specification::Linter] the linter instance from CocoaPods
22
26
  # Core.
23
27
  #
@@ -31,13 +35,28 @@ module Pod
31
35
  # @param [Array<String>] source_urls
32
36
  # the Source URLs to use in creating a {Podfile}.
33
37
  #
34
- def initialize(spec_or_path, source_urls)
38
+ # @param. [Array<String>] platforms
39
+ # the platforms to lint.
40
+ #
41
+ def initialize(spec_or_path, source_urls, platforms = [])
35
42
  @linter = Specification::Linter.new(spec_or_path)
36
43
  @source_urls = if @linter.spec && @linter.spec.dependencies.empty? && @linter.spec.recursive_subspecs.all? { |s| s.dependencies.empty? }
37
44
  []
38
45
  else
39
46
  source_urls.map { |url| config.sources_manager.source_with_name_or_url(url) }.map(&:url)
40
47
  end
48
+
49
+ @platforms = platforms.map do |platform|
50
+ result = case platform.to_s.downcase
51
+ # Platform doesn't recognize 'macos' as being the same as 'osx' when initializing
52
+ when 'macos' then Platform.macos
53
+ else Platform.new(platform, nil)
54
+ end
55
+ unless valid_platform?(result)
56
+ raise Informative, "Unrecognized platform `#{platform}`. Valid platforms: #{VALID_PLATFORMS.join(', ')}"
57
+ end
58
+ result
59
+ end
41
60
  end
42
61
 
43
62
  #-------------------------------------------------------------------------#
@@ -55,6 +74,28 @@ module Pod
55
74
  @linter.file
56
75
  end
57
76
 
77
+ # Returns a list of platforms to lint for a given Specification
78
+ #
79
+ # @param [Specification] spec
80
+ # The specification to lint
81
+ #
82
+ # @return [Array<Platform>] platforms to lint for the given specification
83
+ #
84
+ def platforms_to_lint(spec)
85
+ return spec.available_platforms if @platforms.empty?
86
+
87
+ # Validate that the platforms specified are actually supported by the spec
88
+ results = @platforms.map do |platform|
89
+ matching_platform = spec.available_platforms.find { |p| p.name == platform.name }
90
+ unless matching_platform
91
+ raise Informative, "Platform `#{platform}` is not supported by specification `#{spec}`."
92
+ end
93
+ matching_platform
94
+ end.uniq
95
+
96
+ results
97
+ end
98
+
58
99
  # @return [Sandbox::FileAccessor] the file accessor for the spec.
59
100
  #
60
101
  attr_accessor :file_accessor
@@ -202,6 +243,10 @@ module Pod
202
243
  #
203
244
  attr_accessor :use_frameworks
204
245
 
246
+ # @return [Boolean] Whether modular headers should be used for the installation.
247
+ #
248
+ attr_accessor :use_modular_headers
249
+
205
250
  # @return [Boolean] Whether attributes that affect only public sources
206
251
  # Bool be skipped.
207
252
  #
@@ -309,7 +354,9 @@ module Pod
309
354
  validate_documentation_url(spec)
310
355
  validate_source_url(spec)
311
356
 
312
- valid = spec.available_platforms.send(fail_fast ? :all? : :each) do |platform|
357
+ platforms = platforms_to_lint(spec)
358
+
359
+ valid = platforms.send(fail_fast ? :all? : :each) do |platform|
313
360
  UI.message "\n\n#{spec} - Analyzing on #{platform} platform.".green.reversed
314
361
  @consumer = spec.consumer(platform)
315
362
  setup_validation_environment
@@ -464,7 +511,7 @@ module Pod
464
511
  end
465
512
 
466
513
  def download_pod
467
- podfile = podfile_from_spec(consumer.platform_name, deployment_target, use_frameworks, consumer.spec.test_specs.map(&:name))
514
+ podfile = podfile_from_spec(consumer.platform_name, deployment_target, use_frameworks, consumer.spec.test_specs.map(&:name), use_modular_headers)
468
515
  sandbox = Sandbox.new(config.sandbox_root)
469
516
  @installer = Installer.new(sandbox, podfile)
470
517
  @installer.use_default_plugins = false
@@ -475,7 +522,8 @@ module Pod
475
522
 
476
523
  def create_app_project
477
524
  app_project = Xcodeproj::Project.new(validation_dir + 'App.xcodeproj')
478
- Pod::Generator::AppTargetHelper.add_app_target(app_project, consumer.platform_name, deployment_target)
525
+ app_target = Pod::Generator::AppTargetHelper.add_app_target(app_project, consumer.platform_name, deployment_target)
526
+ Pod::Generator::AppTargetHelper.add_swift_version(app_target, swift_version)
479
527
  app_project.save
480
528
  app_project.recreate_user_schemes
481
529
  end
@@ -484,9 +532,9 @@ module Pod
484
532
  app_project = Xcodeproj::Project.open(validation_dir + 'App.xcodeproj')
485
533
  app_target = app_project.targets.first
486
534
  pod_target = @installer.pod_targets.find { |pt| pt.pod_name == spec.root.name }
487
- Pod::Generator::AppTargetHelper.add_app_project_import(app_project, app_target, pod_target, consumer.platform_name, use_frameworks)
488
- Pod::Generator::AppTargetHelper.add_swift_version(app_target, swift_version)
535
+ Pod::Generator::AppTargetHelper.add_app_project_import(app_project, app_target, pod_target, consumer.platform_name)
489
536
  Pod::Generator::AppTargetHelper.add_xctest_search_paths(app_target) if @installer.pod_targets.any? { |pt| pt.spec_consumers.any? { |c| c.frameworks.include?('XCTest') } }
537
+ Pod::Generator::AppTargetHelper.add_empty_swift_file(app_project, app_target) if @installer.pod_targets.any?(&:uses_swift?)
490
538
  app_project.save
491
539
  Xcodeproj::XCScheme.share_scheme(app_project.path, 'App')
492
540
  # Share the pods xcscheme only if it exists. For pre-built vendored pods there is no xcscheme generated.
@@ -501,43 +549,33 @@ module Pod
501
549
  perform_post_install_actions).each { |m| @installer.send(m) }
502
550
 
503
551
  deployment_target = spec.subspec_by_name(subspec_name).deployment_target(consumer.platform_name)
504
- configure_pod_targets(@installer.aggregate_targets, deployment_target)
552
+ configure_pod_targets(@installer.aggregate_targets, @installer.target_installation_results, deployment_target)
505
553
  @installer.pods_project.save
506
554
  end
507
555
 
508
- def configure_pod_targets(targets, deployment_target)
509
- test_only_pod_targets = @installer.pod_targets - targets.flat_map(&:pod_targets)
510
- targets.each do |target|
511
- target.pod_targets.each do |pod_target|
512
- update_pod_target_build_settings(pod_target)
513
- if pod_target.uses_swift?
514
- pod_target.test_native_targets.each do |test_native_target|
515
- test_native_target.build_configuration_list.build_configurations.each do |build_configuration|
516
- build_configuration.build_settings['SWIFT_VERSION'] = swift_version
517
- end
556
+ def configure_pod_targets(targets, target_installation_results, deployment_target)
557
+ target_installation_results.first.values.each do |pod_target_installation_result|
558
+ pod_target = pod_target_installation_result.target
559
+ native_target = pod_target_installation_result.native_target
560
+ native_target.build_configuration_list.build_configurations.each do |build_configuration|
561
+ (build_configuration.build_settings['OTHER_CFLAGS'] ||= '$(inherited)') << ' -Wincomplete-umbrella'
562
+ build_configuration.build_settings['SWIFT_VERSION'] = (pod_target.swift_version || swift_version) if pod_target.uses_swift?
563
+ end
564
+ pod_target_installation_result.test_specs_by_native_target.each do |test_native_target, test_specs|
565
+ if pod_target.uses_swift_for_test_spec?(test_specs.first)
566
+ test_native_target.build_configuration_list.build_configurations.each do |build_configuration|
567
+ build_configuration.build_settings['SWIFT_VERSION'] = swift_version
518
568
  end
519
569
  end
520
570
  end
571
+ end
572
+ targets.each do |target|
521
573
  if target.pod_targets.any?(&:uses_swift?) && consumer.platform_name == :ios &&
522
574
  (deployment_target.nil? || Version.new(deployment_target).major < 8)
523
575
  uses_xctest = target.spec_consumers.any? { |c| (c.frameworks + c.weak_frameworks).include? 'XCTest' }
524
576
  error('swift', 'Swift support uses dynamic frameworks and is therefore only supported on iOS > 8.') unless uses_xctest
525
577
  end
526
578
  end
527
- # Wire up Swift version to pod targets used only by tests.
528
- test_only_pod_targets.each do |test_pod_target|
529
- update_pod_target_build_settings(test_pod_target)
530
- end
531
- end
532
-
533
- def update_pod_target_build_settings(pod_target)
534
- native_target = pod_target.native_target
535
- unless native_target.nil?
536
- native_target.build_configuration_list.build_configurations.each do |build_configuration|
537
- (build_configuration.build_settings['OTHER_CFLAGS'] ||= '$(inherited)') << ' -Wincomplete-umbrella'
538
- build_configuration.build_settings['SWIFT_VERSION'] = (pod_target.swift_version || swift_version) if pod_target.uses_swift?
539
- end
540
- end
541
579
  end
542
580
 
543
581
  def validate_vendored_dynamic_frameworks
@@ -597,7 +635,7 @@ module Pod
597
635
  UI.message "\nTesting with `xcodebuild`.\n".yellow do
598
636
  pod_target = @installer.pod_targets.find { |pt| pt.pod_name == spec.root.name }
599
637
  consumer.spec.test_specs.each do |test_spec|
600
- scheme = pod_target.native_target_for_spec(test_spec)
638
+ scheme = @installer.target_installation_results.first[pod_target.name].native_target_for_spec(test_spec)
601
639
  output = xcodebuild('test', scheme, 'Debug')
602
640
  parsed_output = parse_xcodebuild_output(output)
603
641
  translate_output_to_linter_messages(parsed_output)
@@ -624,10 +662,8 @@ module Pod
624
662
  FILE_PATTERNS.each do |attr_name|
625
663
  if respond_to?("_validate_#{attr_name}", true)
626
664
  send("_validate_#{attr_name}")
627
- end
628
-
629
- if !file_accessor.spec_consumer.send(attr_name).empty? && file_accessor.send(attr_name).empty?
630
- error('file patterns', "The `#{attr_name}` pattern did not match any file.")
665
+ else
666
+ validate_nonempty_patterns(attr_name, :error)
631
667
  end
632
668
  end
633
669
 
@@ -638,12 +674,26 @@ module Pod
638
674
  end
639
675
  end
640
676
 
677
+ # Validates that the file patterns in `attr_name` match at least 1 file.
678
+ #
679
+ # @param [String,Symbol] attr_name the name of the attribute to check (ex. :public_header_files)
680
+ #
681
+ # @param [String,Symbol] message_type the type of message to send if the patterns are empty (ex. :error)
682
+ #
683
+ def validate_nonempty_patterns(attr_name, message_type)
684
+ return unless !file_accessor.spec_consumer.send(attr_name).empty? && file_accessor.send(attr_name).empty?
685
+
686
+ add_result(message_type, 'file patterns', "The `#{attr_name}` pattern did not match any file.")
687
+ end
688
+
641
689
  def _validate_private_header_files
642
690
  _validate_header_files(:private_header_files)
691
+ validate_nonempty_patterns(:private_header_files, :warning)
643
692
  end
644
693
 
645
694
  def _validate_public_header_files
646
695
  _validate_header_files(:public_header_files)
696
+ validate_nonempty_patterns(:public_header_files, :warning)
647
697
  end
648
698
 
649
699
  def _validate_license
@@ -801,27 +851,30 @@ module Pod
801
851
  # @note The generated podfile takes into account whether the linter is
802
852
  # in local mode.
803
853
  #
804
- def podfile_from_spec(platform_name, deployment_target, use_frameworks = true, test_spec_names = [])
854
+ def podfile_from_spec(platform_name, deployment_target, use_frameworks = true, test_spec_names = [], use_modular_headers = false)
805
855
  name = subspec_name || spec.name
806
856
  podspec = file.realpath
807
857
  local = local?
808
858
  urls = source_urls
809
859
  Pod::Podfile.new do
810
860
  install! 'cocoapods', :deterministic_uuids => false
861
+ # By default inhibit warnings for all pods, except the one being validated.
862
+ inhibit_all_warnings!
811
863
  urls.each { |u| source(u) }
812
864
  target 'App' do
813
865
  use_frameworks!(use_frameworks)
866
+ use_modular_headers! if use_modular_headers
814
867
  platform(platform_name, deployment_target)
815
868
  if local
816
- pod name, :path => podspec.dirname.to_s
869
+ pod name, :path => podspec.dirname.to_s, :inhibit_warnings => false
817
870
  else
818
- pod name, :podspec => podspec.to_s
871
+ pod name, :podspec => podspec.to_s, :inhibit_warnings => false
819
872
  end
820
873
  test_spec_names.each do |test_spec_name|
821
874
  if local
822
- pod test_spec_name, :path => podspec.dirname.to_s
875
+ pod test_spec_name, :path => podspec.dirname.to_s, :inhibit_warnings => false
823
876
  else
824
- pod test_spec_name, :podspec => podspec.to_s
877
+ pod test_spec_name, :podspec => podspec.to_s, :inhibit_warnings => false
825
878
  end
826
879
  end
827
880
  end
@@ -889,6 +942,45 @@ module Pod
889
942
  Executable.execute_command('xcodebuild', command, raise_on_failure)
890
943
  end
891
944
 
945
+ # Whether the platform with the specified name is valid
946
+ #
947
+ # @param [Platform] platform
948
+ # The platform to check
949
+ #
950
+ # @return [Bool] True if the platform is valid
951
+ #
952
+ def valid_platform?(platform)
953
+ VALID_PLATFORMS.any? { |p| p.name == platform.name }
954
+ end
955
+
956
+ # Whether the platform is supported by the specification
957
+ #
958
+ # @param [Platform] platform
959
+ # The platform to check
960
+ #
961
+ # @param [Specification] specification
962
+ # The specification which must support the provided platform
963
+ #
964
+ # @return [Bool] Whether the platform is supported by the specification
965
+ #
966
+ def supported_platform?(platform, spec)
967
+ available_platforms = spec.available_platforms
968
+
969
+ available_platforms.any? { |p| p.name == platform.name }
970
+ end
971
+
972
+ # Whether the provided name matches the platform
973
+ #
974
+ # @param [Platform] platform
975
+ # The platform
976
+ #
977
+ # @param [String] name
978
+ # The name to check against the provided platform
979
+ #
980
+ def platform_name_match?(platform, name)
981
+ [platform.name, platform.string_name].any? { |n| n.casecmp(name) == 0 }
982
+ end
983
+
892
984
  #-------------------------------------------------------------------------#
893
985
  end
894
986
  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.5.3
4
+ version: 1.6.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: 2018-05-24 00:00:00.000000000 Z
14
+ date: 2018-08-16 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.5.3
22
+ version: 1.6.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.5.3
29
+ version: 1.6.0.beta.1
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: claide
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -73,7 +73,7 @@ dependencies:
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
- version: 1.2.0
76
+ version: 1.2.1
77
77
  - - "<"
78
78
  - !ruby/object:Gem::Version
79
79
  version: '2.0'
@@ -83,7 +83,7 @@ dependencies:
83
83
  requirements:
84
84
  - - ">="
85
85
  - !ruby/object:Gem::Version
86
- version: 1.2.0
86
+ version: 1.2.1
87
87
  - - "<"
88
88
  - !ruby/object:Gem::Version
89
89
  version: '2.0'
@@ -153,7 +153,7 @@ dependencies:
153
153
  requirements:
154
154
  - - ">="
155
155
  - !ruby/object:Gem::Version
156
- version: 1.3.0
156
+ version: 1.3.1
157
157
  - - "<"
158
158
  - !ruby/object:Gem::Version
159
159
  version: '2.0'
@@ -163,7 +163,7 @@ dependencies:
163
163
  requirements:
164
164
  - - ">="
165
165
  - !ruby/object:Gem::Version
166
- version: 1.3.0
166
+ version: 1.3.1
167
167
  - - "<"
168
168
  - !ruby/object:Gem::Version
169
169
  version: '2.0'
@@ -193,21 +193,21 @@ dependencies:
193
193
  requirements:
194
194
  - - "~>"
195
195
  - !ruby/object:Gem::Version
196
- version: 0.6.5
196
+ version: 0.6.6
197
197
  type: :runtime
198
198
  prerelease: false
199
199
  version_requirements: !ruby/object:Gem::Requirement
200
200
  requirements:
201
201
  - - "~>"
202
202
  - !ruby/object:Gem::Version
203
- version: 0.6.5
203
+ version: 0.6.6
204
204
  - !ruby/object:Gem::Dependency
205
205
  name: xcodeproj
206
206
  requirement: !ruby/object:Gem::Requirement
207
207
  requirements:
208
208
  - - ">="
209
209
  - !ruby/object:Gem::Version
210
- version: 1.5.7
210
+ version: 1.6.0
211
211
  - - "<"
212
212
  - !ruby/object:Gem::Version
213
213
  version: '2.0'
@@ -217,7 +217,7 @@ dependencies:
217
217
  requirements:
218
218
  - - ">="
219
219
  - !ruby/object:Gem::Version
220
- version: 1.5.7
220
+ version: 1.6.0
221
221
  - - "<"
222
222
  - !ruby/object:Gem::Version
223
223
  version: '2.0'
@@ -317,14 +317,14 @@ dependencies:
317
317
  requirements:
318
318
  - - "~>"
319
319
  - !ruby/object:Gem::Version
320
- version: '1.1'
320
+ version: '1.2'
321
321
  type: :runtime
322
322
  prerelease: false
323
323
  version_requirements: !ruby/object:Gem::Requirement
324
324
  requirements:
325
325
  - - "~>"
326
326
  - !ruby/object:Gem::Version
327
- version: '1.1'
327
+ version: '1.2'
328
328
  - !ruby/object:Gem::Dependency
329
329
  name: bacon
330
330
  requirement: !ruby/object:Gem::Requirement
@@ -454,10 +454,6 @@ files:
454
454
  - lib/cocoapods/generator/module_map.rb
455
455
  - lib/cocoapods/generator/prefix_header.rb
456
456
  - lib/cocoapods/generator/umbrella_header.rb
457
- - lib/cocoapods/generator/xcconfig.rb
458
- - lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb
459
- - lib/cocoapods/generator/xcconfig/pod_xcconfig.rb
460
- - lib/cocoapods/generator/xcconfig/xcconfig_helper.rb
461
457
  - lib/cocoapods/hooks_manager.rb
462
458
  - lib/cocoapods/installer.rb
463
459
  - lib/cocoapods/installer/analyzer.rb
@@ -483,10 +479,13 @@ files:
483
479
  - lib/cocoapods/installer/xcode.rb
484
480
  - lib/cocoapods/installer/xcode/pods_project_generator.rb
485
481
  - lib/cocoapods/installer/xcode/pods_project_generator/aggregate_target_installer.rb
482
+ - lib/cocoapods/installer/xcode/pods_project_generator/app_host_installer.rb
486
483
  - lib/cocoapods/installer/xcode/pods_project_generator/file_references_installer.rb
487
484
  - lib/cocoapods/installer/xcode/pods_project_generator/pod_target_installer.rb
488
485
  - lib/cocoapods/installer/xcode/pods_project_generator/pod_target_integrator.rb
486
+ - lib/cocoapods/installer/xcode/pods_project_generator/target_installation_result.rb
489
487
  - lib/cocoapods/installer/xcode/pods_project_generator/target_installer.rb
488
+ - lib/cocoapods/installer/xcode/pods_project_generator/target_installer_helper.rb
490
489
  - lib/cocoapods/installer/xcode/target_validator.rb
491
490
  - lib/cocoapods/open-uri.rb
492
491
  - lib/cocoapods/project.rb
@@ -501,6 +500,7 @@ files:
501
500
  - lib/cocoapods/sources_manager.rb
502
501
  - lib/cocoapods/target.rb
503
502
  - lib/cocoapods/target/aggregate_target.rb
503
+ - lib/cocoapods/target/build_settings.rb
504
504
  - lib/cocoapods/target/pod_target.rb
505
505
  - lib/cocoapods/user_interface.rb
506
506
  - lib/cocoapods/user_interface/error_report.rb