xcarchive 0.1.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 +4 -4
- data/README.md +25 -2
- data/lib/xcarchive/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d587c87e9a8b3e2c6f98451ff3077331942b46dc
|
4
|
+
data.tar.gz: e279c3396b54248dae607a02c4f0af1d3053899b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c0b8770b3bbf0e5634ce461ec2a711b6b45d286234b8d66009200d666d06546440282b4d010a63c93f374d02f2bb055591ed5fa1f72b1c376d11d1c19cecd40
|
7
|
+
data.tar.gz: d5498b8a2bf6be04edbbbda449a9701715057c6ef158b74494b1750ea86586b05aafbda43c9608b1e0f2638c8a535bddc701fcdbeca4c35a08f28b388e2e1854
|
data/README.md
CHANGED
@@ -22,7 +22,30 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
## Usage
|
24
24
|
|
25
|
-
|
25
|
+
Listing all archives:
|
26
|
+
|
27
|
+
$ xcarchive --list
|
28
|
+
|
29
|
+
Filtering archives by bundle identifier:
|
30
|
+
|
31
|
+
$ xcarchive --list --id [APP_BUNDLE_IDENTIFIER]
|
32
|
+
|
33
|
+
Filtering archives by bundle identifier & build number:
|
34
|
+
|
35
|
+
$ xcarchive --list --id [APP_BUNDLE_IDENTIFIER] --build [BUILD_NUMBER]
|
36
|
+
|
37
|
+
Print path for an archive or archives for a given app version:
|
38
|
+
|
39
|
+
$ xcarchive --path --id [APP_BUNDLE_IDENTIFIER] --version [APP_VERSION]
|
40
|
+
|
41
|
+
Exporting an archive:
|
42
|
+
|
43
|
+
$ xcarchive --id [APP_BUNDLE_IDENTIFIER] --build [BUILD_NUMER] --export [EXPORT_PATH] --options [EXPORT_OPTIONS_INFO_PLIST_PATH]
|
44
|
+
|
45
|
+
Printing usage information:
|
46
|
+
|
47
|
+
$ xcarchive --help
|
48
|
+
|
26
49
|
|
27
50
|
## Development
|
28
51
|
|
@@ -32,5 +55,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
55
|
|
33
56
|
## Contributing
|
34
57
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
58
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/jaderfeijo/xcarchive.
|
36
59
|
|
data/lib/xcarchive/version.rb
CHANGED