cocoapods-core 0.31.0 → 0.31.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1def4418127d244ff521d4f76a14445fb4a559c2
|
4
|
+
data.tar.gz: 50da728c79fd04ece560821d954b689b7e3f5053
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d2b45626d5775c887f71646a6b565fb21691b7a1f9e0882774aa02fa683c5ffe7c298bd621c1f371494a61d5a57e3745872f8b8a47062ebcd15b782c01f4736
|
7
|
+
data.tar.gz: 475271274e02a01b7130b3168d52c19d6a9ff4b3e855c62faff403dd079d83d90134d3e2f81328e7dedddcc8c448a251651e1e59f200fe6a6c8bff41aa15a87c
|
@@ -347,7 +347,10 @@ module Pod
|
|
347
347
|
# @return [String] the prefix header.
|
348
348
|
#
|
349
349
|
def _prepare_prefix_header_contents(value)
|
350
|
-
|
350
|
+
if value
|
351
|
+
value = value.join("\n") if value.is_a?(Array)
|
352
|
+
value.strip_heredoc.chomp
|
353
|
+
end
|
351
354
|
end
|
352
355
|
|
353
356
|
# Ensures that the file patterns of the resource bundles are contained in
|
@@ -121,7 +121,7 @@ module Pod
|
|
121
121
|
#
|
122
122
|
def description
|
123
123
|
description = attributes_hash["description"]
|
124
|
-
description.strip_heredoc if description
|
124
|
+
description.strip_heredoc.chomp if description
|
125
125
|
end
|
126
126
|
|
127
127
|
# @return [Array<String>] The list of the URL for the screenshots of
|
@@ -143,7 +143,8 @@ module Pod
|
|
143
143
|
# @return [String, Nil] The prepare command of the Pod if specified.
|
144
144
|
#
|
145
145
|
def prepare_command
|
146
|
-
attributes_hash["prepare_command"]
|
146
|
+
command = attributes_hash["prepare_command"]
|
147
|
+
command.strip_heredoc.chomp if command
|
147
148
|
end
|
148
149
|
|
149
150
|
#---------------------------------------------------------------------#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.31.
|
4
|
+
version: 0.31.1
|
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: 2014-
|
12
|
+
date: 2014-04-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|