cocoapods-trunk 1.0.0.beta.4 → 1.0.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: 23c468b90815a380dab83a873c6dbec1aa8a59d6
4
- data.tar.gz: eadb2e4bbf8bc0c73e6bf8107455e4852bbabbea
3
+ metadata.gz: 42af7b68c10026a5d678edcf70b90146035898e6
4
+ data.tar.gz: 87446cc8afe4d3cfbce95a46405146dd433d0d9f
5
5
  SHA512:
6
- metadata.gz: 8772eec2bace28f29ae803cc100655ce13c631fdf02f8273fc24246148a8feb1521829a631b1f56ef9476026cd79245b813bad39bd5f3a0fbb5b1c3626159e2f
7
- data.tar.gz: 1885ce0145d4fa17db4599f0969ce6e3bd8a5a17901a35b2e49a5d0643172a4452d9eb94e43e76aa920f10928fe22694d856de67224837c0bbd0eef50b2f9758
6
+ metadata.gz: f20ec193e5be691d590343eaf557fe060ede2eaa4ff22ea4c60326f6ec7185766e785aaf5c95813a02f454be13a20b9a033375bb786f72786088cd83134f704f
7
+ data.tar.gz: 0e815961e5577814e01c88d67d3d3b4dc18353d047d0b6d9c34dc7c362bd7017566efc266ff98657ca4013821ea5dffe910107134b8229df05bb9a6a18072fc2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## 1.0.0.rc.1 (2016-04-30)
2
+
3
+ ##### Enhancements
4
+
5
+ * Make the error loading a specification during `pod trunk push` more
6
+ informative.
7
+ [Samuel Giddins](https://github.com/segiddins)
8
+ [#63](https://github.com/CocoaPods/cocoapods-trunk/issues/63)
9
+
10
+ ##### Bug Fixes
11
+
12
+ * None.
13
+
14
+
1
15
  ## 1.0.0.beta.4 (2016-04-15)
2
16
 
3
17
  ##### Enhancements
data/Gemfile.lock CHANGED
@@ -19,7 +19,7 @@ GIT
19
19
  cocoapods-plugins (>= 1.0.0.beta.1, < 2.0)
20
20
  cocoapods-search (= 1.0.0.beta.2)
21
21
  cocoapods-stats (= 1.0.0.beta.4)
22
- cocoapods-trunk (= 1.0.0.beta.4)
22
+ cocoapods-trunk (= 1.0.0.rc.1)
23
23
  cocoapods-try (>= 1.0.0.beta.3, < 2.0)
24
24
  colored (~> 1.2)
25
25
  escape (~> 0.0.4)
@@ -41,7 +41,7 @@ GIT
41
41
  PATH
42
42
  remote: .
43
43
  specs:
44
- cocoapods-trunk (1.0.0.beta.4)
44
+ cocoapods-trunk (1.0.0.rc.1)
45
45
  nap (>= 0.8, < 2.0)
46
46
  netrc (= 0.7.8)
47
47
 
@@ -1,3 +1,3 @@
1
1
  module CocoaPodsTrunk
2
- VERSION = '1.0.0.beta.4'.freeze
2
+ VERSION = '1.0.0.rc.1'.freeze
3
3
  end
@@ -90,9 +90,9 @@ module Pod
90
90
 
91
91
  def spec
92
92
  @spec ||= Pod::Specification.from_file(@path)
93
- rescue Informative # TODO: this should be a more specific error
94
- raise Informative, 'Unable to interpret the specified path as a ' \
95
- 'podspec.'
93
+ rescue Informative => e # TODO: this should be a more specific error
94
+ raise Informative, 'Unable to interpret the specified path ' \
95
+ "#{UI.path(@path)} as a podspec (#{e})."
96
96
  end
97
97
 
98
98
  # Performs a full lint against the podspecs.
metadata CHANGED
@@ -1,33 +1,33 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-trunk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta.4
4
+ version: 1.0.0.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Durán
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-15 00:00:00.000000000 Z
11
+ date: 2016-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nap
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0.8'
20
- - - <
20
+ - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: '2.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - '>='
27
+ - - ">="
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0.8'
30
- - - <
30
+ - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '2.0'
33
33
  - !ruby/object:Gem::Dependency
@@ -48,28 +48,28 @@ dependencies:
48
48
  name: bundler
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - ~>
51
+ - - "~>"
52
52
  - !ruby/object:Gem::Version
53
53
  version: '1.3'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - ~>
58
+ - - "~>"
59
59
  - !ruby/object:Gem::Version
60
60
  version: '1.3'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: rake
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
- - - ~>
65
+ - - "~>"
66
66
  - !ruby/object:Gem::Version
67
67
  version: '10.0'
68
68
  type: :development
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - ~>
72
+ - - "~>"
73
73
  - !ruby/object:Gem::Version
74
74
  version: '10.0'
75
75
  description:
@@ -79,12 +79,12 @@ executables: []
79
79
  extensions: []
80
80
  extra_rdoc_files: []
81
81
  files:
82
- - .gitignore
83
- - .kick
84
- - .rubocop.yml
85
- - .rubocop_cocoapods.yml
86
- - .rubocop_todo.yml
87
- - .travis.yml
82
+ - ".gitignore"
83
+ - ".kick"
84
+ - ".rubocop.yml"
85
+ - ".rubocop_cocoapods.yml"
86
+ - ".rubocop_todo.yml"
87
+ - ".travis.yml"
88
88
  - CHANGELOG.md
89
89
  - Gemfile
90
90
  - Gemfile.lock
@@ -124,12 +124,12 @@ require_paths:
124
124
  - lib
125
125
  required_ruby_version: !ruby/object:Gem::Requirement
126
126
  requirements:
127
- - - '>='
127
+ - - ">="
128
128
  - !ruby/object:Gem::Version
129
129
  version: 2.0.0
130
130
  required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  requirements:
132
- - - '>'
132
+ - - ">"
133
133
  - !ruby/object:Gem::Version
134
134
  version: 1.3.1
135
135
  requirements: []