cocoapods-trunk 0.1.1 → 0.1.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/README.md +4 -1
- data/lib/pod/command/trunk.rb +4 -1
- data/lib/trunk/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0206d27a8709696ece456481c0bb8f2ad649bb2
|
|
4
|
+
data.tar.gz: 1d16e7b4ce3ba1117b5bc77ff41ea5c917652cc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2c155bbb087eb49572708881f75e0cec1c46dd7c2685ca26993709deac1e798031e708ce9552eba5d52aa39b2693ed1fd2e03998259a1e1622c1c6c37bdc09a6
|
|
7
|
+
data.tar.gz: b73ac6ae5421c03275de96e4afdd884c002ceed736206c3ff092437fb84c45e98c0a705cc04cc0e8887eddf31495649fdaa21c2a6b776abb8bdc91c1d3d2715a
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Cocoapods::Trunk
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://travis-ci.org/CocoaPods/cocoapods-trunk)
|
|
4
|
+
|
|
5
|
+
CocoaPods plugin for trunk.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -29,3 +31,4 @@ With a local install of `trunk.cocoapods.org` up and running:
|
|
|
29
31
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
30
32
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
31
33
|
5. Create new Pull Request
|
|
34
|
+
|
data/lib/pod/command/trunk.rb
CHANGED
|
@@ -266,7 +266,10 @@ module Pod
|
|
|
266
266
|
url = response.headers['location'].first
|
|
267
267
|
json = json(request_url(:get, url, default_headers))
|
|
268
268
|
|
|
269
|
-
UI.labeled
|
|
269
|
+
# Using UI.labeled here is dangerous, as it wraps the URL and indents
|
|
270
|
+
# it, which breaks the URL when you try to copy-paste it.
|
|
271
|
+
$stdout.puts " - Data URL: #{json['data_url']}"
|
|
272
|
+
|
|
270
273
|
messages = json['messages'].map do |entry|
|
|
271
274
|
at, message = entry.to_a.flatten
|
|
272
275
|
"#{formatted_time(at)}: #{message}"
|
data/lib/trunk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-trunk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
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: 2014-05-
|
|
11
|
+
date: 2014-05-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nap
|