cocoapods 0.36.0.rc.1 → 0.36.0

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
  SHA1:
3
- metadata.gz: ef4ce8ae91c04f6565e9e5607da50a2f6b6d96f1
4
- data.tar.gz: e913792e08a80a242b1817fb186456219cc3cca1
3
+ metadata.gz: 34422801dcfb63c977b484dcc025841634e7b6f5
4
+ data.tar.gz: 8f5b38874ef893eeef31ed34415ad7368038ca06
5
5
  SHA512:
6
- metadata.gz: 697dbb533f3490b27c2683c110f6f7ddea96b2197be16d042d805ed3baa3a17e36807f24821abb559f43c4c0f0c44b6afbb4487d1a9f613ea265e9b5d9f85d57
7
- data.tar.gz: 5a881818cfcc504b8f45e1bda435397279a806e357768c6520bd2fe198eb5521b35e32f85481d971a97e8b7e8ba69b8437effe506ee5aa7ffcb40f9b2cb514fd
6
+ metadata.gz: 71b28d6e75360c4ae1537bcb79c4b15bfe67463c4d394ae50026403a013db908a9f27fdc4817a4181e3e46bacef62b185df6a922060a89cc0a4e19bbbc15cec8
7
+ data.tar.gz: b21f3d2eb6b8adaf3a5008fdcede49338d8f935c63adfd321977aadf2b5a331045a6ee509881d74fd20bec67ab1002232e0ee2a41280cea5553b0e673759e3d4
@@ -4,6 +4,59 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
4
4
 
5
5
  To install release candidates run `[sudo] gem install cocoapods --pre`
6
6
 
7
+ ## 0.36.0
8
+
9
+ [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.22.0...0.23.0)
10
+
11
+ ##### Enhancements
12
+
13
+ * Allows Swift pods to have a deployment target under iOS 8.0 if they use
14
+ XCTest.
15
+ [Samuel Giddins](https://github.com/segiddins)
16
+ [#3225](https://github.com/CocoaPods/CocoaPods/issues/3225)
17
+
18
+ ##### Bug Fixes
19
+
20
+ * Include Swift-specific build settings on target creation, i.e. disable optimizations
21
+ for debug configuration.
22
+ [Marius Rackwitz](https://github.com/mrackwitz)
23
+ [#3238](https://github.com/CocoaPods/CocoaPods/issues/3238)
24
+
25
+ * Only copy explicitly specified xcasset files into the bundle of the integrated target.
26
+ [Marius Rackwitz](https://github.com/mrackwitz)
27
+ [#3219](https://github.com/CocoaPods/CocoaPods/issues/3219)
28
+
29
+ * Correctly filter Xcode warnings about the use of dynamic frameworks.
30
+ [Boris Bügling](https://github.com/neonichu)
31
+
32
+ * Fixes warnings, when the aggregate target doesn't contain any pod target, which is build,
33
+ because `PODS_FRAMEWORK_BUILD_PATH` was added to `FRAMEWORK_SEARCH_PATHS`, but never created.
34
+ [Marius Rackwitz](https://github.com/mrackwitz)
35
+ [#3217](https://github.com/CocoaPods/CocoaPods/issues/3217)
36
+
37
+ * Allows the usage of `:head` dependencies even when the most recent published
38
+ version was a pre-release.
39
+ [Samuel Giddins](https://github.com/segiddins)
40
+ [#3212](https://github.com/CocoaPods/CocoaPods/issues/3212)
41
+
42
+ * Limit the check for transitive static binaries to those which are directly linked to the user target.
43
+ [Boris Bügling](https://github.com/neonichu)
44
+ [#3194](https://github.com/CocoaPods/CocoaPods/issues/3194)
45
+
46
+ * Lint to prevent dynamic libraries and frameworks from passing with iOS 7.
47
+ [Boris Bügling](https://github.com/neonichu)
48
+ [#3193](https://github.com/CocoaPods/CocoaPods/issues/3193)
49
+
50
+ * Shows an informative error message when there is no base specification found
51
+ for a `:head` dependency.
52
+ [Samuel Giddins](https://github.com/segiddins)
53
+ [#3230](https://github.com/CocoaPods/CocoaPods/issues/3230)
54
+
55
+ * Fix the `OTHER_SWIFT_FLAGS` generated, so it inherits previous definitions.
56
+ [Daniel Thorpe](https://github.com/danthorpe)
57
+ [#2983](https://github.com/CocoaPods/CocoaPods/issues/2983)
58
+
59
+
7
60
  ## 0.36.0.rc.1
8
61
 
9
62
  ##### Enhancements
@@ -78,5 +78,4 @@ end
78
78
 
79
79
  if ENV['COCOA_PODS_ENV'] == 'development'
80
80
  # require 'awesome_print'
81
- # require 'pry'
82
81
  end
@@ -20,7 +20,7 @@ module Pod
20
20
  :integrate_targets => true,
21
21
  :new_version_message => true,
22
22
 
23
- :cache_root => Pathname.new(File.join(ENV['HOME'], 'Library/Caches/CocoaPods')),
23
+ :cache_root => Pathname.new(Dir.home) + 'Library/Caches/CocoaPods',
24
24
  }
25
25
 
26
26
  public
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the cocoapods command line tool.
3
3
  #
4
- VERSION = '0.36.0.rc.1' unless defined? Pod::VERSION
4
+ VERSION = '0.36.0' unless defined? Pod::VERSION
5
5
  end
@@ -96,6 +96,8 @@ mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
96
96
  RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
97
97
  > "$RESOURCES_TO_COPY"
98
98
 
99
+ XCASSET_FILES=""
100
+
99
101
  install_resource()
100
102
  {
101
103
  case $1 in
@@ -126,6 +128,7 @@ install_resource()
126
128
  xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm"
127
129
  ;;
128
130
  *.xcassets)
131
+ XCASSET_FILES="$XCASSET_FILES '$1'"
129
132
  ;;
130
133
  /*)
131
134
  echo "$1"
@@ -150,7 +153,7 @@ EOS
150
153
 
151
154
  XCASSETS_COMPILE = <<EOS
152
155
 
153
- if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
156
+ if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n $XCASSET_FILES ]
154
157
  then
155
158
  case "${TARGETED_DEVICE_FAMILY}" in
156
159
  1,2)
@@ -166,7 +169,7 @@ then
166
169
  TARGET_DEVICE_ARGS="--target-device mac"
167
170
  ;;
168
171
  esac
169
- find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
172
+ echo $XCASSET_FILES | xargs actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
170
173
  fi
171
174
  EOS
172
175
  end
@@ -60,10 +60,12 @@ module Pod
60
60
  header_search_paths = pod_targets.map { |target| "$PODS_FRAMEWORK_BUILD_PATH/#{target.product_name}/Headers" }
61
61
  build_settings = {
62
62
  'PODS_FRAMEWORK_BUILD_PATH' => target.configuration_build_dir,
63
- 'FRAMEWORK_SEARCH_PATHS' => '"$PODS_FRAMEWORK_BUILD_PATH"',
64
63
  # Make headers discoverable by `import "…"`
65
64
  'OTHER_CFLAGS' => '$(inherited) ' + XCConfigHelper.quote(header_search_paths, '-iquote'),
66
65
  }
66
+ if target.pod_targets.any?(&:should_build?)
67
+ build_settings['FRAMEWORK_SEARCH_PATHS'] = '"$PODS_FRAMEWORK_BUILD_PATH"'
68
+ end
67
69
  config.merge!(build_settings)
68
70
  else
69
71
  # Make headers discoverable from $PODS_ROOT/Headers directory
@@ -160,7 +160,7 @@ module Pod
160
160
  def self.add_language_specific_settings(target, xcconfig)
161
161
  if target.uses_swift?
162
162
  build_settings = {
163
- 'OTHER_SWIFT_FLAGS' => quote(%w(-D COCOAPODS)),
163
+ 'OTHER_SWIFT_FLAGS' => '$(inherited) ' + quote(%w(-D COCOAPODS)),
164
164
  }
165
165
  xcconfig.merge!(build_settings)
166
166
  end
@@ -45,7 +45,7 @@ module Pod
45
45
  raise ArgumentError, 'Missing block' unless block
46
46
 
47
47
  UI.warn '[Hooks] The use of hooks without specifying a `plugin_name` ' \
48
- 'has been deprecated.' unless plugin_name
48
+ "has been deprecated (from file `#{block.binding.eval('File.expand_path __FILE__')}`)." unless plugin_name
49
49
 
50
50
  @name = name
51
51
  @plugin_name = plugin_name
@@ -355,7 +355,7 @@ module Pod
355
355
  pod_targets = aggregate_target.pod_targets_for_build_configuration(config)
356
356
 
357
357
  dependencies = pod_targets.flat_map(&:dependencies)
358
- dependended_upon_targets = pod_targets.select { |t| dependencies.include?(t.pod_name) }
358
+ dependended_upon_targets = pod_targets.select { |t| dependencies.include?(t.pod_name) && !t.should_build? }
359
359
 
360
360
  static_libs = dependended_upon_targets.flat_map(&:file_accessors).flat_map do |fa|
361
361
  static_frameworks = fa.vendored_frameworks.reject { |fw| `file #{fw + fw.basename('.framework')} 2>&1` =~ /dynamically linked/ }
@@ -40,7 +40,8 @@ module Pod
40
40
  name = target.label
41
41
  platform = target.platform.name
42
42
  deployment_target = target.platform.deployment_target.to_s
43
- @native_target = project.new_target(product_type, name, platform, deployment_target)
43
+ language = target.uses_swift? ? :swift : :objc
44
+ @native_target = project.new_target(product_type, name, platform, deployment_target, nil, language)
44
45
 
45
46
  product_name = target.product_name
46
47
  product = @native_target.product_reference
@@ -9,7 +9,7 @@ module Pod
9
9
  class Project < Xcodeproj::Project
10
10
  # @param [Pathname, String] path @see path
11
11
  # @param [Bool] skip_initialization
12
- # Wether the project should be initialized from scratch.
12
+ # Whether the project should be initialized from scratch.
13
13
  #
14
14
  def initialize(path, skip_initialization = false)
15
15
  super(path, skip_initialization)
@@ -180,7 +180,7 @@ module Pod
180
180
  end
181
181
  requirement_satisfied && !(
182
182
  spec.version.prerelease? &&
183
- existing_vertices.flat_map(&:requirements).none? { |r| r.prerelease? || r.external_source }
183
+ existing_vertices.flat_map(&:requirements).none? { |r| r.prerelease? || r.external_source || r.head? }
184
184
  )
185
185
  end
186
186
 
@@ -311,7 +311,7 @@ module Pod
311
311
  else
312
312
  set = create_set_from_sources(dependency)
313
313
  end
314
- if dependency.head?
314
+ if set && dependency.head?
315
315
  set = Specification::Set::Head.new(set.specification)
316
316
  end
317
317
  cached_sets[name] = set
@@ -213,6 +213,7 @@ module Pod
213
213
  @consumer = spec.consumer(platform)
214
214
  setup_validation_environment
215
215
  install_pod
216
+ validate_vendored_dynamic_frameworks
216
217
  build_pod
217
218
  check_file_patterns
218
219
  tear_down_validation_environment
@@ -312,7 +313,8 @@ module Pod
312
313
  file_accessors = installer.aggregate_targets.map do |target|
313
314
  if target.pod_targets.any?(&:uses_swift?) && consumer.platform_name == :ios &&
314
315
  (deployment_target.nil? || Version.new(deployment_target).major < 8)
315
- error('swift', 'Swift support uses dynamic frameworks and is therefore only supported on iOS > 8.')
316
+ uses_xctest = target.spec_consumers.any? { |c| (c.frameworks + c.weak_frameworks).include? 'XCTest' }
317
+ error('swift', 'Swift support uses dynamic frameworks and is therefore only supported on iOS > 8.') unless uses_xctest
316
318
  end
317
319
 
318
320
  target.pod_targets.map(&:file_accessors)
@@ -322,6 +324,19 @@ module Pod
322
324
  config.silent
323
325
  end
324
326
 
327
+ def validate_vendored_dynamic_frameworks
328
+ deployment_target = spec.subspec_by_name(subspec_name).deployment_target(consumer.platform_name)
329
+
330
+ unless file_accessor.nil?
331
+ dynamic_frameworks = file_accessor.vendored_frameworks.select { |fw| `file #{fw + fw.basename('.framework')} 2>&1` =~ /dynamically linked/ }
332
+ dynamic_libraries = file_accessor.vendored_libraries.select { |lib| `file #{lib} 2>&1` =~ /dynamically linked/ }
333
+ if (dynamic_frameworks.count > 0 || dynamic_libraries.count > 0) && consumer.platform_name == :ios &&
334
+ (deployment_target.nil? || Version.new(deployment_target).major < 8)
335
+ error('dynamic', 'Dynamic frameworks and libraries are only supported on iOS 8.0 and onwards.')
336
+ end
337
+ end
338
+ end
339
+
325
340
  # Performs platform specific analysis. It requires to download the source
326
341
  # at each iteration
327
342
  #
@@ -509,9 +524,8 @@ module Pod
509
524
  def parse_xcodebuild_output(output)
510
525
  lines = output.split("\n")
511
526
  selected_lines = lines.select do |l|
512
- l.include?('error: ') && (l !~ /frameworks only run on iOS 8/) &&
513
- (l !~ /errors? generated\./) && (l !~ /error: \(null\)/) ||
514
- l.include?('warning: ') && (l !~ /warnings? generated\./) ||
527
+ l.include?('error: ') && (l !~ /errors? generated\./) && (l !~ /error: \(null\)/) ||
528
+ l.include?('warning: ') && (l !~ /warnings? generated\./) && (l !~ /frameworks only run on iOS 8/) ||
515
529
  l.include?('note: ') && (l !~ /expanded from macro/)
516
530
  end
517
531
  selected_lines.map do |l|
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: 0.36.0.rc.1
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-02-24 00:00:00.000000000 Z
12
+ date: 2015-03-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cocoapods-core
@@ -17,222 +17,222 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 0.36.0.rc.1
20
+ version: 0.36.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - '='
26
26
  - !ruby/object:Gem::Version
27
- version: 0.36.0.rc.1
27
+ version: 0.36.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: claide
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
32
+ - - ~>
33
33
  - !ruby/object:Gem::Version
34
34
  version: 0.8.1
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - "~>"
39
+ - - ~>
40
40
  - !ruby/object:Gem::Version
41
41
  version: 0.8.1
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: xcodeproj
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - "~>"
46
+ - - ~>
47
47
  - !ruby/object:Gem::Version
48
- version: 0.22.0
48
+ version: 0.23.0
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - "~>"
53
+ - - ~>
54
54
  - !ruby/object:Gem::Version
55
- version: 0.22.0
55
+ version: 0.23.0
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: cocoapods-downloader
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - "~>"
60
+ - - ~>
61
61
  - !ruby/object:Gem::Version
62
62
  version: 0.8.1
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - "~>"
67
+ - - ~>
68
68
  - !ruby/object:Gem::Version
69
69
  version: 0.8.1
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: cocoapods-plugins
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - "~>"
74
+ - - ~>
75
75
  - !ruby/object:Gem::Version
76
76
  version: 0.4.1
77
77
  type: :runtime
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - "~>"
81
+ - - ~>
82
82
  - !ruby/object:Gem::Version
83
83
  version: 0.4.1
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: cocoapods-try
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - "~>"
88
+ - - ~>
89
89
  - !ruby/object:Gem::Version
90
90
  version: 0.4.3
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - "~>"
95
+ - - ~>
96
96
  - !ruby/object:Gem::Version
97
97
  version: 0.4.3
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: cocoapods-trunk
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - "~>"
102
+ - - ~>
103
103
  - !ruby/object:Gem::Version
104
- version: 0.5.1
104
+ version: 0.6.0
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - "~>"
109
+ - - ~>
110
110
  - !ruby/object:Gem::Version
111
- version: 0.5.1
111
+ version: 0.6.0
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: molinillo
114
114
  requirement: !ruby/object:Gem::Requirement
115
115
  requirements:
116
- - - "~>"
116
+ - - ~>
117
117
  - !ruby/object:Gem::Version
118
118
  version: 0.2.1
119
119
  type: :runtime
120
120
  prerelease: false
121
121
  version_requirements: !ruby/object:Gem::Requirement
122
122
  requirements:
123
- - - "~>"
123
+ - - ~>
124
124
  - !ruby/object:Gem::Version
125
125
  version: 0.2.1
126
126
  - !ruby/object:Gem::Dependency
127
127
  name: colored
128
128
  requirement: !ruby/object:Gem::Requirement
129
129
  requirements:
130
- - - "~>"
130
+ - - ~>
131
131
  - !ruby/object:Gem::Version
132
132
  version: '1.2'
133
133
  type: :runtime
134
134
  prerelease: false
135
135
  version_requirements: !ruby/object:Gem::Requirement
136
136
  requirements:
137
- - - "~>"
137
+ - - ~>
138
138
  - !ruby/object:Gem::Version
139
139
  version: '1.2'
140
140
  - !ruby/object:Gem::Dependency
141
141
  name: escape
142
142
  requirement: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - "~>"
144
+ - - ~>
145
145
  - !ruby/object:Gem::Version
146
146
  version: 0.0.4
147
147
  type: :runtime
148
148
  prerelease: false
149
149
  version_requirements: !ruby/object:Gem::Requirement
150
150
  requirements:
151
- - - "~>"
151
+ - - ~>
152
152
  - !ruby/object:Gem::Version
153
153
  version: 0.0.4
154
154
  - !ruby/object:Gem::Dependency
155
155
  name: open4
156
156
  requirement: !ruby/object:Gem::Requirement
157
157
  requirements:
158
- - - "~>"
158
+ - - ~>
159
159
  - !ruby/object:Gem::Version
160
160
  version: '1.3'
161
161
  type: :runtime
162
162
  prerelease: false
163
163
  version_requirements: !ruby/object:Gem::Requirement
164
164
  requirements:
165
- - - "~>"
165
+ - - ~>
166
166
  - !ruby/object:Gem::Version
167
167
  version: '1.3'
168
168
  - !ruby/object:Gem::Dependency
169
169
  name: activesupport
170
170
  requirement: !ruby/object:Gem::Requirement
171
171
  requirements:
172
- - - ">="
172
+ - - '>='
173
173
  - !ruby/object:Gem::Version
174
174
  version: 3.2.15
175
175
  type: :runtime
176
176
  prerelease: false
177
177
  version_requirements: !ruby/object:Gem::Requirement
178
178
  requirements:
179
- - - ">="
179
+ - - '>='
180
180
  - !ruby/object:Gem::Version
181
181
  version: 3.2.15
182
182
  - !ruby/object:Gem::Dependency
183
183
  name: nap
184
184
  requirement: !ruby/object:Gem::Requirement
185
185
  requirements:
186
- - - "~>"
186
+ - - ~>
187
187
  - !ruby/object:Gem::Version
188
188
  version: '0.8'
189
189
  type: :runtime
190
190
  prerelease: false
191
191
  version_requirements: !ruby/object:Gem::Requirement
192
192
  requirements:
193
- - - "~>"
193
+ - - ~>
194
194
  - !ruby/object:Gem::Version
195
195
  version: '0.8'
196
196
  - !ruby/object:Gem::Dependency
197
197
  name: bundler
198
198
  requirement: !ruby/object:Gem::Requirement
199
199
  requirements:
200
- - - "~>"
200
+ - - ~>
201
201
  - !ruby/object:Gem::Version
202
202
  version: '1.3'
203
203
  type: :development
204
204
  prerelease: false
205
205
  version_requirements: !ruby/object:Gem::Requirement
206
206
  requirements:
207
- - - "~>"
207
+ - - ~>
208
208
  - !ruby/object:Gem::Version
209
209
  version: '1.3'
210
210
  - !ruby/object:Gem::Dependency
211
211
  name: rake
212
212
  requirement: !ruby/object:Gem::Requirement
213
213
  requirements:
214
- - - ">="
214
+ - - '>='
215
215
  - !ruby/object:Gem::Version
216
216
  version: '0'
217
217
  type: :development
218
218
  prerelease: false
219
219
  version_requirements: !ruby/object:Gem::Requirement
220
220
  requirements:
221
- - - ">="
221
+ - - '>='
222
222
  - !ruby/object:Gem::Version
223
223
  version: '0'
224
224
  - !ruby/object:Gem::Dependency
225
225
  name: bacon
226
226
  requirement: !ruby/object:Gem::Requirement
227
227
  requirements:
228
- - - "~>"
228
+ - - ~>
229
229
  - !ruby/object:Gem::Version
230
230
  version: '1.1'
231
231
  type: :development
232
232
  prerelease: false
233
233
  version_requirements: !ruby/object:Gem::Requirement
234
234
  requirements:
235
- - - "~>"
235
+ - - ~>
236
236
  - !ruby/object:Gem::Version
237
237
  version: '1.1'
238
238
  description: |-
@@ -250,46 +250,40 @@ executables:
250
250
  extensions: []
251
251
  extra_rdoc_files: []
252
252
  files:
253
- - CHANGELOG.md
254
- - LICENSE
255
- - README.md
256
- - bin/pod
257
- - bin/sandbox-pod
258
- - lib/cocoapods.rb
259
- - lib/cocoapods/command.rb
260
253
  - lib/cocoapods/command/init.rb
261
254
  - lib/cocoapods/command/inter_process_communication.rb
262
255
  - lib/cocoapods/command/lib.rb
263
256
  - lib/cocoapods/command/list.rb
264
257
  - lib/cocoapods/command/outdated.rb
265
258
  - lib/cocoapods/command/project.rb
266
- - lib/cocoapods/command/repo.rb
267
259
  - lib/cocoapods/command/repo/add.rb
268
260
  - lib/cocoapods/command/repo/lint.rb
269
261
  - lib/cocoapods/command/repo/list.rb
270
262
  - lib/cocoapods/command/repo/push.rb
271
263
  - lib/cocoapods/command/repo/remove.rb
272
264
  - lib/cocoapods/command/repo/update.rb
265
+ - lib/cocoapods/command/repo.rb
273
266
  - lib/cocoapods/command/search.rb
274
267
  - lib/cocoapods/command/setup.rb
275
- - lib/cocoapods/command/spec.rb
276
268
  - lib/cocoapods/command/spec/cat.rb
277
269
  - lib/cocoapods/command/spec/create.rb
278
270
  - lib/cocoapods/command/spec/edit.rb
279
271
  - lib/cocoapods/command/spec/lint.rb
280
272
  - lib/cocoapods/command/spec/which.rb
273
+ - lib/cocoapods/command/spec.rb
274
+ - lib/cocoapods/command.rb
281
275
  - lib/cocoapods/config.rb
282
276
  - lib/cocoapods/downloader.rb
283
277
  - lib/cocoapods/executable.rb
284
- - lib/cocoapods/external_sources.rb
285
278
  - lib/cocoapods/external_sources/abstract_external_source.rb
286
279
  - lib/cocoapods/external_sources/downloader_source.rb
287
280
  - lib/cocoapods/external_sources/path_source.rb
288
281
  - lib/cocoapods/external_sources/podspec_source.rb
282
+ - lib/cocoapods/external_sources.rb
289
283
  - lib/cocoapods/gem_version.rb
290
- - lib/cocoapods/generator/acknowledgements.rb
291
284
  - lib/cocoapods/generator/acknowledgements/markdown.rb
292
285
  - lib/cocoapods/generator/acknowledgements/plist.rb
286
+ - lib/cocoapods/generator/acknowledgements.rb
293
287
  - lib/cocoapods/generator/bridge_support.rb
294
288
  - lib/cocoapods/generator/copy_resources_script.rb
295
289
  - lib/cocoapods/generator/dummy_source.rb
@@ -300,44 +294,50 @@ files:
300
294
  - lib/cocoapods/generator/prefix_header.rb
301
295
  - lib/cocoapods/generator/target_environment_header.rb
302
296
  - lib/cocoapods/generator/umbrella_header.rb
303
- - lib/cocoapods/generator/xcconfig.rb
304
297
  - lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb
305
298
  - lib/cocoapods/generator/xcconfig/private_pod_xcconfig.rb
306
299
  - lib/cocoapods/generator/xcconfig/public_pod_xcconfig.rb
307
300
  - lib/cocoapods/generator/xcconfig/xcconfig_helper.rb
301
+ - lib/cocoapods/generator/xcconfig.rb
308
302
  - lib/cocoapods/hooks/installer_representation.rb
309
303
  - lib/cocoapods/hooks/library_representation.rb
310
304
  - lib/cocoapods/hooks/pod_representation.rb
311
305
  - lib/cocoapods/hooks_manager.rb
312
- - lib/cocoapods/installer.rb
313
- - lib/cocoapods/installer/analyzer.rb
314
306
  - lib/cocoapods/installer/analyzer/locking_dependency_analyzer.rb
315
307
  - lib/cocoapods/installer/analyzer/sandbox_analyzer.rb
308
+ - lib/cocoapods/installer/analyzer.rb
316
309
  - lib/cocoapods/installer/file_references_installer.rb
317
310
  - lib/cocoapods/installer/hooks_context.rb
318
311
  - lib/cocoapods/installer/migrator.rb
319
312
  - lib/cocoapods/installer/pod_source_installer.rb
320
- - lib/cocoapods/installer/target_installer.rb
321
313
  - lib/cocoapods/installer/target_installer/aggregate_target_installer.rb
322
314
  - lib/cocoapods/installer/target_installer/pod_target_installer.rb
323
- - lib/cocoapods/installer/user_project_integrator.rb
324
- - lib/cocoapods/installer/user_project_integrator/target_integrator.rb
315
+ - lib/cocoapods/installer/target_installer.rb
325
316
  - lib/cocoapods/installer/user_project_integrator/target_integrator/xcconfig_integrator.rb
317
+ - lib/cocoapods/installer/user_project_integrator/target_integrator.rb
318
+ - lib/cocoapods/installer/user_project_integrator.rb
319
+ - lib/cocoapods/installer.rb
326
320
  - lib/cocoapods/open_uri.rb
327
321
  - lib/cocoapods/project.rb
328
- - lib/cocoapods/resolver.rb
329
322
  - lib/cocoapods/resolver/lazy_specification.rb
330
- - lib/cocoapods/sandbox.rb
323
+ - lib/cocoapods/resolver.rb
331
324
  - lib/cocoapods/sandbox/file_accessor.rb
332
325
  - lib/cocoapods/sandbox/headers_store.rb
333
326
  - lib/cocoapods/sandbox/path_list.rb
327
+ - lib/cocoapods/sandbox.rb
334
328
  - lib/cocoapods/sources_manager.rb
335
- - lib/cocoapods/target.rb
336
329
  - lib/cocoapods/target/aggregate_target.rb
337
330
  - lib/cocoapods/target/pod_target.rb
338
- - lib/cocoapods/user_interface.rb
331
+ - lib/cocoapods/target.rb
339
332
  - lib/cocoapods/user_interface/error_report.rb
333
+ - lib/cocoapods/user_interface.rb
340
334
  - lib/cocoapods/validator.rb
335
+ - lib/cocoapods.rb
336
+ - bin/pod
337
+ - bin/sandbox-pod
338
+ - README.md
339
+ - LICENSE
340
+ - CHANGELOG.md
341
341
  homepage: https://github.com/CocoaPods/CocoaPods
342
342
  licenses:
343
343
  - MIT
@@ -348,17 +348,17 @@ require_paths:
348
348
  - lib
349
349
  required_ruby_version: !ruby/object:Gem::Requirement
350
350
  requirements:
351
- - - ">="
351
+ - - '>='
352
352
  - !ruby/object:Gem::Version
353
353
  version: 2.0.0
354
354
  required_rubygems_version: !ruby/object:Gem::Requirement
355
355
  requirements:
356
- - - ">="
356
+ - - '>='
357
357
  - !ruby/object:Gem::Version
358
358
  version: '0'
359
359
  requirements: []
360
360
  rubyforge_project:
361
- rubygems_version: 2.4.5
361
+ rubygems_version: 2.0.14
362
362
  signing_key:
363
363
  specification_version: 3
364
364
  summary: The Cocoa library package manager.