xcselect 0.0.10 → 0.0.11
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.
- data/README.md +6 -2
- data/bin/xcselect +1 -0
- data/lib/xcselect/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -13,6 +13,10 @@ Use -a to switch to the next xcode
|
|
13
13
|
|
14
14
|
xcselect -a
|
15
15
|
|
16
|
-
|
16
|
+
Use show -s to print info about the current xcode
|
17
17
|
|
18
|
-
xcselect -s
|
18
|
+
xcselect -s
|
19
|
+
|
20
|
+
To open the current xcode (but will open first .xcproject in working dir if exists)
|
21
|
+
|
22
|
+
xcselect -o
|
data/bin/xcselect
CHANGED
@@ -37,6 +37,7 @@ class Main
|
|
37
37
|
opts.on('-a', '--alt' , "Alternate through all installs") { select_next() ;exit}
|
38
38
|
opts.on('-s', '--show' , "Show Current") { show_current(); exit }
|
39
39
|
opts.on('-o', '--open' , "Open *.xcodeproj") { open_xcode(); exit }
|
40
|
+
opts.on('-v', '--version', "Print version info") { puts "xcselect-" + VERSION; exit; }
|
40
41
|
end
|
41
42
|
begin
|
42
43
|
optparse.parse!
|
data/lib/xcselect/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 11
|
9
|
+
version: 0.0.11
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Kim Hunter
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date:
|
17
|
+
date: 2012-01-03 00:00:00 +10:00
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|