cocoapods 0.32.0 → 0.32.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af7d6a3b7351a1ce2268eaaa3eed8c42cfd4fbdc
4
- data.tar.gz: f70c26b92240ccd444d2b654d377b008ddd00f68
3
+ metadata.gz: 0283bc5d1d675094d9e6fffacee1574fa3a56f77
4
+ data.tar.gz: 38a932083669d5f27b6aa630cfec338e0f43651d
5
5
  SHA512:
6
- metadata.gz: cb11133140778a88ed6ffcd50c85fcb9eca03986598396357bd503188ddccd3e91248537d438a7c83233da67db4058729c071cdb988051e2ae64e55dd2a5d971
7
- data.tar.gz: dc8f39cf7327e565ae923b68daab0385f0917c8288fb7f19640583cba5d787d5cc0a7e2371326d9ad4977eb8f0089ae63aa5b7489747f69688e61e1f0d54a9b5
6
+ metadata.gz: 603ecc9670839b8fde00cc46496cfa18353c39e92ae2b74759d273845cbf2e5b63d6c9f2e9bce0fc75af6905a939da2560d88601f32e748a81d22978e02d5e0b
7
+ data.tar.gz: d972cdfc6986cd08328099a46df07e29feafec94e0befa36a0aab9991e516e840a35c812564bdcd7b0c13c3228cb8b247b4afc5ae8cb21757802cc8b92a85309
@@ -2,6 +2,15 @@
2
2
 
3
3
  To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
4
4
 
5
+ ## 0.32.1
6
+
7
+ ##### Bug Fixes
8
+
9
+ * Fixed the Podfile `default_subspec` attribute in nested subspecs.
10
+ [Fabio Pelosin][irrationalfab]
11
+ [#2050](https://github.com/CocoaPods/CocoaPods/issues/2050)
12
+
13
+
5
14
  ## 0.32.0
6
15
 
7
16
  [CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/master...0.31.1)
@@ -19,7 +19,7 @@ module Pod
19
19
  "`#{declared_path}`"
20
20
  end
21
21
  store_podspec(sandbox, podspec)
22
- is_absolute = absolute?(podspec)
22
+ is_absolute = absolute?(declared_path)
23
23
  sandbox.store_local_path(name, podspec.dirname, is_absolute)
24
24
  end
25
25
  end
@@ -1,6 +1,6 @@
1
1
  module Pod
2
2
  # The version of the cocoapods command line tool.
3
3
  #
4
- VERSION = '0.32.0' unless defined? Pod::VERSION
4
+ VERSION = '0.32.1' unless defined? Pod::VERSION
5
5
  end
6
6
 
@@ -159,7 +159,7 @@ module Pod
159
159
  root + root_name
160
160
  end
161
161
  end
162
-
162
+
163
163
  # Returns true if the path as originally specified was absolute.
164
164
  #
165
165
  # @param [String] name
@@ -169,7 +169,7 @@ module Pod
169
169
  def local_path_was_absolute?(name)
170
170
  @pods_with_absolute_path.include? name
171
171
  end
172
-
172
+
173
173
  # @return [Pathname] the directory where to store the documentation.
174
174
  #
175
175
  def documentation_dir
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.32.0
4
+ version: 0.32.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 0.32.0
20
+ version: 0.32.1
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.32.0
27
+ version: 0.32.1
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: claide
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -272,48 +272,9 @@ homepage: https://github.com/CocoaPods/CocoaPods
272
272
  licenses:
273
273
  - MIT
274
274
  metadata: {}
275
- post_install_message: "\nCHANGELOG:\n\n## 0.32.0\n\n[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/master...0.31.1)\n
276
- [CocoaPods-Core](https://github.com/CocoaPods/Core/compare/master...0.31.1)\n\n#####
277
- Enhancements\n\n* Allow to update only a list of given pods with `pod update [POD_NAMES...]`.
278
- \ \n [Marius Rackwitz](https://github.com/mrackwitz)\n [CocoaPods#760](https://github.com/CocoaPods/CocoaPods/issues/760)\n\n*
279
- `pod update` prints the previous version of the updated pods. \n [Andrea Mazzini](https://github.com/andreamazz)\n
280
- \ [#2008](https://github.com/CocoaPods/CocoaPods/issues/2008)\n\n* `pod update`
281
- falls back to `pod install` if no Lockfile is present. \n [Marius Rackwitz](https://github.com/mrackwitz)\n\n*
282
- File references in the Pods project for development Pods now are absolute if\n the
283
- dependency is specified with an absolute paths. \n [Samuel Ford](https://github.com/samuelwford)\n
284
- \ [#1042](https://github.com/CocoaPods/CocoaPods/issues/1042)\n\n* Added `deprecated`
285
- and `deprecated_in_favor_of` attributes to Specification\n DSL. \n [Paul Young](https://github.com/paulyoung)\n
286
- \ [Core#87](https://github.com/CocoaPods/Core/pull/87)\n\n* Numerous improvements
287
- to the validator and to the linter.\n * Validate the reachability of screenshot
288
- URLs in podspecs while linting a\n specification. \n [Kyle Fuller](https://github.com/kylef)\n
289
- \ [#2010](https://github.com/CocoaPods/CocoaPods/issues/2010)\n * Support HTTP
290
- redirects when linting homepage and screenshots. \n [Boris Bügling](https://github.com/neonichu)\n
291
- \ [#2027](https://github.com/CocoaPods/CocoaPods/pull/2027)\n * The linter now
292
- checks `framework` and `library` attributes for invalid\n strings. \n [Paul
293
- Williamson](https://github.com/squarefrog)\n [Fabio Pelosin](irrationalfab)\n
294
- \ [Core#66](https://github.com/CocoaPods/Core/issues/66)\n [Core#96](https://github.com/CocoaPods/Core/pull/96)\n
295
- \ [Core#105](https://github.com/CocoaPods/Core/issues/105)\n * The Linter will
296
- not check for comments anymore. \n [Fabio Pelosin][irrationalfab]\n [Core#108](https://github.com/CocoaPods/Core/issues/108)\n
297
- \ * Removed legacy checks from the linter. \n [Fabio Pelosin][irrationalfab]\n
298
- \ [Core#108](https://github.com/CocoaPods/Core/issues/108)\n * Added logic to
299
- handle subspecs and platform scopes to linter check of\n the `requries_arc` attribute.
300
- \ \n [Fabio Pelosin][irrationalfab]\n [CocoaPods#2005](https://github.com/CocoaPods/CocoaPods/issues/2005)\n
301
- \ * The linter no longer considers empty a Specification if it only specifies the\n
302
- \ `resource_bundle` attribute. \n [Joshua Kalpin][Kapin]\n [#63](https://github.com/CocoaPods/Core/issues/63)\n
303
- \ [#95](https://github.com/CocoaPods/Core/pull/95)\n\n* `pod lib create` is now
304
- using the `configure` file instead of the\n `_CONFIGURE.rb` file. \n [Piet Brauer](https://github.com/pietbrauer)\n
305
- \ [Orta Therox](https://github.com/orta)\n\n* `pod lib create` now disallows any
306
- pod name that begins with a `.` \n [Dustin Clark](https://github.com/clarkda)\n
307
- \ [#2026](https://github.com/CocoaPods/CocoaPods/pull/2026)\n [Core#97](https://github.com/CocoaPods/Core/pull/97)\n
308
- \ [Core#98](https://github.com/CocoaPods/Core/issues/98)\n\n* Prevent the user from
309
- using `pod` commands as root. \n [Kyle Fuller](https://github.com/kylef)\n [#1815](https://github.com/CocoaPods/CocoaPods/issues/1815)\n\n*
310
- Dependencies declared with external sources now support HTTP downloads and\n have
311
- improved support for all the options supported by the downloader. \n [Fabio Pelosin][irrationalfab]\n\n*
312
- An informative error message is presented when merge conflict is detected in\n a
313
- YAML file. \n [Luis de la Rosa](https://github.com/luisdelarosa)\n [#69](https://github.com/CocoaPods/Core/issues/69)\n
314
- \ [#100](https://github.com/CocoaPods/Core/pull/100)\n\n##### Bug Fixes\n\n* Fixed
315
- the Podfile `default_subspec` attribute in nested subspecs. \n [Fabio Pelosin][irrationalfab]\n
316
- \ [#1021](https://github.com/CocoaPods/CocoaPods/issues/1021)\n\n\n\n"
275
+ post_install_message: "\nCHANGELOG:\n\n## 0.32.1\n\n##### Bug Fixes\n\n* Fixed the
276
+ Podfile `default_subspec` attribute in nested subspecs. \n [Fabio Pelosin][irrationalfab]\n
277
+ \ [#2050](https://github.com/CocoaPods/CocoaPods/issues/2050)\n\n\n"
317
278
  rdoc_options: []
318
279
  require_paths:
319
280
  - lib