cocoapods-core 0.37.1 → 0.37.2
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 +4 -4
- data/lib/cocoapods-core/gem_version.rb +1 -1
- data/lib/cocoapods-core/podfile.rb +3 -1
- data/lib/cocoapods-core/specification.rb +4 -1
- metadata +13 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e053438b3db2de494ab0ee1d76eec36a4d3f087
|
|
4
|
+
data.tar.gz: 2544c41abf9e1658bb3cd4f18f1a0ac621c000c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31aa9c985163f24fcb8f1fbf9a769673861a39de5263d2ff1830890fdb8f354b61c2510d12d0b5ca2bf0d46a753f66632ac09b4ad26600a7fbe5c6a979bb818f
|
|
7
|
+
data.tar.gz: ec05ab1709917c93cdeef6ccbe48683ccf5e554b505cb7fdfe77fdd8219d4554bf6a64ebccc878a4cfd611379d49d956e515cd5d48ff3acceb4a5a92fb1448c6
|
|
@@ -249,14 +249,16 @@ module Pod
|
|
|
249
249
|
string.encode!('UTF-8')
|
|
250
250
|
end
|
|
251
251
|
podfile = Podfile.new(path) do
|
|
252
|
+
# rubocop:disable Lint/RescueException
|
|
252
253
|
begin
|
|
253
254
|
# rubocop:disable Eval
|
|
254
255
|
eval(string, nil, path.to_s)
|
|
255
256
|
# rubocop:enable Eval
|
|
256
|
-
rescue => e
|
|
257
|
+
rescue Exception => e
|
|
257
258
|
message = "Invalid `#{path.basename}` file: #{e.message}"
|
|
258
259
|
raise DSLError.new(message, path, e.backtrace, string)
|
|
259
260
|
end
|
|
261
|
+
# rubocop:enable Lint/RescueException
|
|
260
262
|
end
|
|
261
263
|
podfile
|
|
262
264
|
end
|
|
@@ -606,7 +606,10 @@ module Pod
|
|
|
606
606
|
# rubocop:disable Eval
|
|
607
607
|
eval(string, nil, path.to_s)
|
|
608
608
|
# rubocop:enable Eval
|
|
609
|
-
|
|
609
|
+
|
|
610
|
+
# rubocop:disable Lint/RescueException
|
|
611
|
+
rescue Exception => e
|
|
612
|
+
# rubocop:enable Lint/RescueException
|
|
610
613
|
message = "Invalid `#{path.basename}` file: #{e.message}"
|
|
611
614
|
raise DSLError.new(message, path, e.backtrace, string)
|
|
612
615
|
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: 0.37.
|
|
4
|
+
version: 0.37.2
|
|
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-05-
|
|
12
|
+
date: 2015-05-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -78,6 +78,9 @@ executables: []
|
|
|
78
78
|
extensions: []
|
|
79
79
|
extra_rdoc_files: []
|
|
80
80
|
files:
|
|
81
|
+
- LICENSE
|
|
82
|
+
- README.md
|
|
83
|
+
- lib/cocoapods-core.rb
|
|
81
84
|
- lib/cocoapods-core/core_ui.rb
|
|
82
85
|
- lib/cocoapods-core/dependency.rb
|
|
83
86
|
- lib/cocoapods-core/gem_version.rb
|
|
@@ -86,37 +89,34 @@ files:
|
|
|
86
89
|
- lib/cocoapods-core/lockfile.rb
|
|
87
90
|
- lib/cocoapods-core/metrics.rb
|
|
88
91
|
- lib/cocoapods-core/platform.rb
|
|
92
|
+
- lib/cocoapods-core/podfile.rb
|
|
89
93
|
- lib/cocoapods-core/podfile/dsl.rb
|
|
90
94
|
- lib/cocoapods-core/podfile/target_definition.rb
|
|
91
|
-
- lib/cocoapods-core/podfile.rb
|
|
92
95
|
- lib/cocoapods-core/requirement.rb
|
|
96
|
+
- lib/cocoapods-core/source.rb
|
|
93
97
|
- lib/cocoapods-core/source/acceptor.rb
|
|
94
98
|
- lib/cocoapods-core/source/aggregate.rb
|
|
95
99
|
- lib/cocoapods-core/source/health_reporter.rb
|
|
96
|
-
- lib/cocoapods-core/
|
|
100
|
+
- lib/cocoapods-core/specification.rb
|
|
97
101
|
- lib/cocoapods-core/specification/consumer.rb
|
|
102
|
+
- lib/cocoapods-core/specification/dsl.rb
|
|
98
103
|
- lib/cocoapods-core/specification/dsl/attribute.rb
|
|
99
104
|
- lib/cocoapods-core/specification/dsl/attribute_support.rb
|
|
100
105
|
- lib/cocoapods-core/specification/dsl/deprecations.rb
|
|
101
106
|
- lib/cocoapods-core/specification/dsl/platform_proxy.rb
|
|
102
|
-
- lib/cocoapods-core/specification/dsl.rb
|
|
103
107
|
- lib/cocoapods-core/specification/json.rb
|
|
108
|
+
- lib/cocoapods-core/specification/linter.rb
|
|
104
109
|
- lib/cocoapods-core/specification/linter/analyzer.rb
|
|
105
110
|
- lib/cocoapods-core/specification/linter/result.rb
|
|
106
|
-
- lib/cocoapods-core/specification/linter.rb
|
|
107
111
|
- lib/cocoapods-core/specification/root_attribute_accessors.rb
|
|
108
|
-
- lib/cocoapods-core/specification/set/presenter.rb
|
|
109
112
|
- lib/cocoapods-core/specification/set.rb
|
|
110
|
-
- lib/cocoapods-core/specification.rb
|
|
113
|
+
- lib/cocoapods-core/specification/set/presenter.rb
|
|
111
114
|
- lib/cocoapods-core/standard_error.rb
|
|
115
|
+
- lib/cocoapods-core/vendor.rb
|
|
112
116
|
- lib/cocoapods-core/vendor/requirement.rb
|
|
113
117
|
- lib/cocoapods-core/vendor/version.rb
|
|
114
|
-
- lib/cocoapods-core/vendor.rb
|
|
115
118
|
- lib/cocoapods-core/version.rb
|
|
116
119
|
- lib/cocoapods-core/yaml_helper.rb
|
|
117
|
-
- lib/cocoapods-core.rb
|
|
118
|
-
- README.md
|
|
119
|
-
- LICENSE
|
|
120
120
|
homepage: https://github.com/CocoaPods/CocoaPods
|
|
121
121
|
licenses:
|
|
122
122
|
- MIT
|
|
@@ -137,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
137
|
version: '0'
|
|
138
138
|
requirements: []
|
|
139
139
|
rubyforge_project:
|
|
140
|
-
rubygems_version: 2.
|
|
140
|
+
rubygems_version: 2.4.7
|
|
141
141
|
signing_key:
|
|
142
142
|
specification_version: 3
|
|
143
143
|
summary: The models of CocoaPods
|