cocoapods-open 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/open_pod_bay/version.rb +1 -1
- data/lib/pod/command/open.rb +7 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82db40354527e9f215eb58af882fd58e85bf54d7
|
4
|
+
data.tar.gz: 81c231fca5942c9d5aa9038ed0f73f9891e7e876
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec89d2d0d73bcf3da3b4dbedd3f5b8cb080e1696736d8c4ca6781e393c1c64d5b0adb8afbc772c3dc3a084f4b527ac7479027efce0d205316651631715a0fac8
|
7
|
+
data.tar.gz: 53987aa10e8aa9a414c802ff3ddd95f737091a86b4ba5499de25f3ee9ff3f1e0c3499f9a7f53ee86578efcb9beb58e68f376a2d181f887c53a70bfa4c25bf36a
|
data/README.md
CHANGED
@@ -41,6 +41,7 @@ If you are happy with this gem, follow me on Github
|
|
41
41
|
* Mark Rickert (@markrickert) : `reinstall` command
|
42
42
|
* Victor Ilyukevich (@yas375) : `open -a` option
|
43
43
|
* Robert Wijas (@robertwijas) : Fixed arguments warning
|
44
|
+
* Boris Bügling (@neonichu) : Use option syntax for '-a'
|
44
45
|
|
45
46
|
## Contributing
|
46
47
|
|
data/lib/open_pod_bay/version.rb
CHANGED
data/lib/pod/command/open.rb
CHANGED
@@ -5,9 +5,14 @@ module Pod
|
|
5
5
|
self.summary = 'Open the workspace'
|
6
6
|
self.description = <<-DESC
|
7
7
|
Opens the workspace in xcode. If no workspace found in the current directory,
|
8
|
-
looks up until it finds one.
|
8
|
+
looks up until it finds one.
|
9
9
|
DESC
|
10
|
-
|
10
|
+
|
11
|
+
def self.options
|
12
|
+
[
|
13
|
+
['-a', 'Open in AppCode.']
|
14
|
+
]
|
15
|
+
end
|
11
16
|
|
12
17
|
def initialize(argv)
|
13
18
|
@use_appcode = (argv.shift_argument == '-a')
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-open
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Les Hill
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|