cocoapods-trunk 1.0.0.rc.1 → 1.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 42af7b68c10026a5d678edcf70b90146035898e6
4
- data.tar.gz: 87446cc8afe4d3cfbce95a46405146dd433d0d9f
3
+ metadata.gz: 77b9b9ce99fc894c15a7cc3fdbf88a77e3aac595
4
+ data.tar.gz: 836c078e958c67491109e29c42e940848f447330
5
5
  SHA512:
6
- metadata.gz: f20ec193e5be691d590343eaf557fe060ede2eaa4ff22ea4c60326f6ec7185766e785aaf5c95813a02f454be13a20b9a033375bb786f72786088cd83134f704f
7
- data.tar.gz: 0e815961e5577814e01c88d67d3d3b4dc18353d047d0b6d9c34dc7c362bd7017566efc266ff98657ca4013821ea5dffe910107134b8229df05bb9a6a18072fc2
6
+ metadata.gz: a008addf7458e13155794f0f66bfc4b730a4f4fd08be908f7fa5c4dc955f4db984690b1ae235438bc63a32a2ab6dcab5f53320c553f00726be84091aed400702
7
+ data.tar.gz: adef568851a2f0bac3a7a6ca4842429d57f34b56f754d82e77e5f82862eda69a30c978866dd48fa7ac9d4e05d91f3e983c27750c0a23c367b22483f9a90cdfe4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## 1.0.0 (2016-05-10)
2
+
3
+ ##### Enhancements
4
+
5
+ * None.
6
+
7
+ ##### Bug Fixes
8
+
9
+ * Don't print the invocation of `/bin/date`.
10
+ [Samuel Giddins](https://github.com/segiddins)
11
+
12
+
1
13
  ## 1.0.0.rc.1 (2016-04-30)
2
14
 
3
15
  ##### 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.rc.1)
22
+ cocoapods-trunk (= 1.0.0)
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.rc.1)
44
+ cocoapods-trunk (1.0.0)
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.rc.1'.freeze
2
+ VERSION = '1.0.0'.freeze
3
3
  end
@@ -122,7 +122,7 @@ module Pod
122
122
  end
123
123
 
124
124
  def time_zone
125
- out, = Executable.execute_command('/bin/date', %w(+%Z), :capture => :out)
125
+ out, = Executable.capture_command('/bin/date', %w(+%Z), :capture => :out)
126
126
  out.strip
127
127
  end
128
128
  end
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 0.33.0
5
+ #
4
6
  class AddOwner < Trunk
5
7
  self.summary = 'Add an owner to a pod'
6
8
  self.description = <<-DESC
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 1.0.0.beta.1
5
+ #
4
6
  class Delete < Trunk
5
7
  self.summary = 'Deletes a version of a pod.'
6
8
  self.description = <<-DESC
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 1.0.0.beta.1
5
+ #
4
6
  class Deprecate < Trunk
5
7
  self.summary = 'Deprecates a pod.'
6
8
  self.arguments = [
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 0.33.0
5
+ #
4
6
  class Info < Trunk
5
7
  self.summary = 'Returns information about a Pod.'
6
8
  self.arguments = [
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 0.33.0
5
+ #
4
6
  class Me < Trunk
5
7
  self.summary = 'Display information about your sessions'
6
8
  self.description = <<-DESC
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 0.33.0
5
+ #
4
6
  class Push < Trunk
5
7
  self.summary = 'Publish a podspec'
6
8
  self.description = <<-DESC
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 0.33.0
5
+ #
4
6
  class Register < Trunk
5
7
  self.summary = 'Manage sessions'
6
8
  self.description = <<-DESC
@@ -1,6 +1,8 @@
1
1
  module Pod
2
2
  class Command
3
3
  class Trunk
4
+ # @CocoaPods 0.33.0
5
+ #
4
6
  class RemoveOwner < Trunk
5
7
  self.summary = 'Remove an owner from a pod'
6
8
  self.description = <<-DESC
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.rc.1
4
+ version: 1.0.0
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-30 00:00:00.000000000 Z
11
+ date: 2016-05-10 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,14 +124,14 @@ 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
- version: 1.3.1
134
+ version: '0'
135
135
  requirements: []
136
136
  rubyforge_project:
137
137
  rubygems_version: 2.6.3