motion-appstore 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/installer.rb +7 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ca0c094ffad71d6ca1321dab2c050cb26a59d8a
|
4
|
+
data.tar.gz: 97b5631ef6a8732ca1a431601ce1ba8fbb13b2a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e555c3ab0ab87f6a4a7693f18bba98d5e649d366df5467738aaeabf8e1a7963147eab397ad7d25a8a89795023251b92370cbcff5f5392cf435a3af96c14e920a
|
7
|
+
data.tar.gz: 1a83ab4146fa3fa41dbee17ae2acc43afc58fcb0d08f42c598e5985b91c1370d8ffa076cc8dc7d3693d2430b28e64d204d81438ba6107caeb460162de15cf6e4
|
data/ext/installer.rb
CHANGED
@@ -12,4 +12,11 @@ def install_plugins
|
|
12
12
|
FileUtils.mkdir_p(dir) unless File.exist?(dir)
|
13
13
|
FileUtils.ln_sf src, dst
|
14
14
|
end
|
15
|
+
|
16
|
+
# http://stackoverflow.com/questions/28461768/xcode-organizer-trying-to-access-transporter-at-wrong-directory-pathhttp://stackoverflow.com/questions/28461768/xcode-organizer-trying-to-access-transporter-at-wrong-directory-path
|
17
|
+
itms_src = '/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms'
|
18
|
+
itms_dst = '/usr/local/itms'
|
19
|
+
if File.exist?(itms_src) && !File.exist?(itms_dst)
|
20
|
+
FileUtils.ln_sf itms_src, itms_dst
|
21
|
+
end
|
15
22
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-appstore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Watson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: This is RubyMotion plugin which provides commands deal with iTunes Connect.
|
14
14
|
email:
|
@@ -49,3 +49,4 @@ signing_key:
|
|
49
49
|
specification_version: 4
|
50
50
|
summary: This is RubyMotion plugin which provides commands deal with iTunes Connect.
|
51
51
|
test_files: []
|
52
|
+
has_rdoc:
|