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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -2
  3. data/lib/xcarchive/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 89ab454e94804d616ea9a3ddc739935d791a7ecf
4
- data.tar.gz: 0022f1dc8b6f5f664d3928a4c129fc01e3e1861d
3
+ metadata.gz: d587c87e9a8b3e2c6f98451ff3077331942b46dc
4
+ data.tar.gz: e279c3396b54248dae607a02c4f0af1d3053899b
5
5
  SHA512:
6
- metadata.gz: 565e6661c5038f1ea6896c6c12d90dd0d7de5af2847e28bb010df93316dd966e80ff2ac99defd3cdabbbf5b0ff107f41bb8a8909348794fb4188e19cc7c934a5
7
- data.tar.gz: 8de53aac433467eb599cb04a92153527da03da7c8970fdaa8a932446d75d91a920717d4c1ae4c5207f4e4ecd534a8fb2cce53d69228a58bc122ed724af1c2e70
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
- TODO: Write usage instructions here
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/[USERNAME]/xcarchive.
58
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jaderfeijo/xcarchive.
36
59
 
@@ -1,3 +1,3 @@
1
1
  module Xcarchive
2
- VERSION = "0.1.1"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcarchive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - jaderfeijo