xccleanup 0.3.0 → 0.3.1
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 +14 -4
- data/bin/xccleanup +4 -0
- data/lib/xccleanup/version.rb +1 -1
- data/xccleanup.gemspec +2 -2
- metadata +5 -5
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b74da09ff0cd45c1b70b11a8bcf6f5aef48d9aa6
|
4
|
+
data.tar.gz: 489edc81beb651e44b8e84096cba07766aab37b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c697ee68ca99ef1c088d77c63f21336a93392216bce9117b603793e811f416c1b70b1503307480ea046d61b6350365ea8e64d36c9bb976bc10c2e9aef3b903e4
|
7
|
+
data.tar.gz: b429ef0e691ae275643c1455993c8e5226a89bb2777d7e16ba1d1e3602a161ffd00bf693b29441ac2f0f17b7c654f2df3666be00eaed376f445a926739d2851a
|
data/README.md
CHANGED
@@ -21,13 +21,23 @@ Or install it yourself as:
|
|
21
21
|
|
22
22
|
## Usage
|
23
23
|
|
24
|
-
Just run it. You'll be asked which steps you would like to run.
|
24
|
+
Just run it. You'll be asked which steps you would like to run. Available steps:
|
25
25
|
|
26
|
-
|
26
|
+
1. Remove derived data
|
27
|
+
2. Remove module cache
|
28
|
+
3. Remove device support
|
29
|
+
4. Remove old archives
|
30
|
+
5. Remove expired provisioning profiles
|
31
|
+
6. Remove simulator devices
|
32
|
+
7. Remove doc sets
|
27
33
|
|
28
|
-
|
34
|
+
## Backlog
|
29
35
|
|
30
|
-
To
|
36
|
+
To be added in the (near future):
|
37
|
+
|
38
|
+
* Remove device support for tvOS and watchOS (currenty only iOS is checked).
|
39
|
+
* Provide different modes for specifying OS versions to keep.
|
40
|
+
* Remove expired or revoked certificates and (non-Apple) certificates without private key. (is that possible, is that wise?)
|
31
41
|
|
32
42
|
## Contributing
|
33
43
|
|
data/bin/xccleanup
ADDED
data/lib/xccleanup/version.rb
CHANGED
data/xccleanup.gemspec
CHANGED
@@ -16,8 +16,8 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
17
|
f.match(%r{^(test|spec|features)/})
|
18
18
|
end
|
19
|
-
spec.bindir = "
|
20
|
-
spec.executables = spec.files.grep(%r{^
|
19
|
+
spec.bindir = "bin"
|
20
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
21
21
|
spec.require_paths = ["lib"]
|
22
22
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 1.13"
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xccleanup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toine Heuvelmans
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2016-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -41,7 +41,8 @@ dependencies:
|
|
41
41
|
description:
|
42
42
|
email:
|
43
43
|
- toine@algorithmic.me
|
44
|
-
executables:
|
44
|
+
executables:
|
45
|
+
- xccleanup
|
45
46
|
extensions: []
|
46
47
|
extra_rdoc_files: []
|
47
48
|
files:
|
@@ -50,8 +51,7 @@ files:
|
|
50
51
|
- LICENSE.txt
|
51
52
|
- README.md
|
52
53
|
- Rakefile
|
53
|
-
- bin/
|
54
|
-
- bin/setup
|
54
|
+
- bin/xccleanup
|
55
55
|
- lib/xccleanup.rb
|
56
56
|
- lib/xccleanup/version.rb
|
57
57
|
- xccleanup.gemspec
|
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "xccleanup"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start
|