pod-tools 0.1.2 → 0.1.3
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 +10 -4
- data/lib/pod-tools.rb +1 -1
- data/lib/version.rb +1 -1
- data/pod-tools.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2f066b3bb921077ffbfaf4be65954ac4dc1cdf2
|
|
4
|
+
data.tar.gz: ff30313bf47fce4d77acb53a9c491c712ceeaf31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d230451b3a07d7eab701d8f70ec657bc6edefb86920b2a5180906273a17d937c167c4f928efbde729cf1a9e70aeaef32fe5ca8ebce80c45a107bf7b092ba831
|
|
7
|
+
data.tar.gz: dd4b3a948a6d44d1b3b5fa94ef356291c8c33677fc02eabab0fd98b6cac1f8928ab06440d056f83026a130142a772f3e1f87abedb15209d93cc3d91dba238501
|
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Pod Tools
|
|
2
|
-
 
|
|
2
|
+
 [](http://badge.fury.io/rb/pod-tools)
|
|
3
3
|
|
|
4
4
|
Clear CocoaPods cache, re-download and re-install all pods
|
|
5
5
|
|
|
@@ -17,11 +17,17 @@ Install it via terminal:
|
|
|
17
17
|
|
|
18
18
|
On your iOS project folder:
|
|
19
19
|
|
|
20
|
+
Clean cocoapods data
|
|
20
21
|
```bash
|
|
21
|
-
# Clean cocoapods data
|
|
22
22
|
pod-clean
|
|
23
|
-
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Clean cocoapods data and Reinstall
|
|
26
|
+
```bash
|
|
24
27
|
pod-reinstall
|
|
25
|
-
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Clean all XCode derived data
|
|
31
|
+
```bash
|
|
26
32
|
pod-clean-derived-data
|
|
27
33
|
```
|
data/lib/pod-tools.rb
CHANGED
data/lib/version.rb
CHANGED
data/pod-tools.gemspec
CHANGED
|
@@ -13,8 +13,8 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
#spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
-
spec.summary = 'Set of Cocoapods tools
|
|
17
|
-
spec.description = '
|
|
16
|
+
spec.summary = 'Set of Cocoapods tools'
|
|
17
|
+
spec.description = 'Set of Cocoapods tools (clean, reinstall, clean derived data)'
|
|
18
18
|
spec.homepage = "https://github.com/cesarferreira/pod-tools"
|
|
19
19
|
spec.license = 'MIT'
|
|
20
20
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pod-tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- cesar ferreira
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-04-
|
|
11
|
+
date: 2015-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -80,7 +80,7 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0.36'
|
|
83
|
-
description:
|
|
83
|
+
description: Set of Cocoapods tools (clean, reinstall, clean derived data)
|
|
84
84
|
email:
|
|
85
85
|
- cesar.manuel.ferreira@gmail.com
|
|
86
86
|
executables:
|
|
@@ -126,5 +126,5 @@ rubyforge_project:
|
|
|
126
126
|
rubygems_version: 2.4.6
|
|
127
127
|
signing_key:
|
|
128
128
|
specification_version: 4
|
|
129
|
-
summary: Set of Cocoapods tools
|
|
129
|
+
summary: Set of Cocoapods tools
|
|
130
130
|
test_files: []
|