cocoapods-core 0.37.1 → 0.37.2

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: 53a589c3197c5a70aaf2b496c6f2abe47786406b
4
- data.tar.gz: 51efeb963b87bddfc520746c08dff82c70a8c578
3
+ metadata.gz: 6e053438b3db2de494ab0ee1d76eec36a4d3f087
4
+ data.tar.gz: 2544c41abf9e1658bb3cd4f18f1a0ac621c000c7
5
5
  SHA512:
6
- metadata.gz: 71e0cdfd6052bbd73bb2b6d1dfe65f394598220a176433829c70f2d903ad26729a1c004081e0a9fb9afa20637fc89a89de8ed579fb0611f838682510754960b5
7
- data.tar.gz: 0a7977216d4bfcf7243bc0a1c98f240c029879e02285fb6df983ddd6c8c47677741619c40bad982b70e8cb8f562736c354fd47d7aa9af71d5ce081feb3c32a1b
6
+ metadata.gz: 31aa9c985163f24fcb8f1fbf9a769673861a39de5263d2ff1830890fdb8f354b61c2510d12d0b5ca2bf0d46a753f66632ac09b4ad26600a7fbe5c6a979bb818f
7
+ data.tar.gz: ec05ab1709917c93cdeef6ccbe48683ccf5e554b505cb7fdfe77fdd8219d4554bf6a64ebccc878a4cfd611379d49d956e515cd5d48ff3acceb4a5a92fb1448c6
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the cocoapods-core.
3
3
  #
4
- CORE_VERSION = '0.37.1' unless defined? Pod::CORE_VERSION
4
+ CORE_VERSION = '0.37.2' unless defined? Pod::CORE_VERSION
5
5
  end
@@ -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
- rescue => e
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.1
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-06 00:00:00.000000000 Z
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/source.rb
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.0.14
140
+ rubygems_version: 2.4.7
141
141
  signing_key:
142
142
  specification_version: 3
143
143
  summary: The models of CocoaPods