cocoapods-core 1.2.0.beta.3 → 1.2.0.rc.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: 6e0e94fa70fddf03bb96c00808b7ee910f764149
|
4
|
+
data.tar.gz: 99a940f21f27ecd0e6dbcbc8b39125b0878aa34a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad7f382d2f6eca7b59bf2854e30f273b8a7823d3840cc0d7125cb34554a551f8a6adbdd012cb1934d2c1d303cc7379aa9c8bc9f098527cfd3a82b7663d740bc6
|
7
|
+
data.tar.gz: d0635cb7fedc806a779a476f72cf5b6e1bf057cc194a5e7d5696801724b5d49f2e28e9deecde0d907deeeeb11a5b1ac4f002416fe6d5f6b09f0a114a9f923634
|
@@ -251,7 +251,7 @@ module Pod
|
|
251
251
|
|
252
252
|
if d.strip.empty?
|
253
253
|
results.add_error('description', 'The description is empty.')
|
254
|
-
elsif d.length < spec.summary.length
|
254
|
+
elsif spec.summary && d.length < spec.summary.length
|
255
255
|
results.add_warning('description', 'The description is shorter ' \
|
256
256
|
'than the summary.')
|
257
257
|
end
|
@@ -98,6 +98,9 @@ module Pod
|
|
98
98
|
if dsl_path && description =~ /((#{Regexp.quote File.expand_path(dsl_path)}|#{Regexp.quote dsl_path.to_s}):\d+)/
|
99
99
|
trace_line = Regexp.last_match[1]
|
100
100
|
description = description.sub(/#{Regexp.quote trace_line}:\s*/, '')
|
101
|
+
if description =~ /^\s*\^\z/
|
102
|
+
description = description.lines[0..-3].join.chomp
|
103
|
+
end
|
101
104
|
end
|
102
105
|
[trace_line, description]
|
103
106
|
end
|
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: 1.2.0.
|
4
|
+
version: 1.2.0.rc.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:
|
12
|
+
date: 2017-01-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|