airobo 0.1.8__py3-none-any.whl → 0.1.10__py3-none-any.whl
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.
- airobo/api.py +6 -6
- {airobo-0.1.8.dist-info → airobo-0.1.10.dist-info}/METADATA +1 -1
- airobo-0.1.10.dist-info/RECORD +10 -0
- airobo-0.1.8.dist-info/RECORD +0 -10
- {airobo-0.1.8.dist-info → airobo-0.1.10.dist-info}/WHEEL +0 -0
- {airobo-0.1.8.dist-info → airobo-0.1.10.dist-info}/entry_points.txt +0 -0
- {airobo-0.1.8.dist-info → airobo-0.1.10.dist-info}/top_level.txt +0 -0
airobo/api.py
CHANGED
@@ -5,8 +5,8 @@ import os
|
|
5
5
|
import re
|
6
6
|
|
7
7
|
# Declarations / modules
|
8
|
-
from airobo.modules import
|
9
|
-
from airobo.modules import
|
8
|
+
from airobo.modules.publishAndroid import publish_android
|
9
|
+
from airobo.modules.publishIOS import publish_ios
|
10
10
|
|
11
11
|
# ======================================================================================
|
12
12
|
|
@@ -17,12 +17,12 @@ def publish(plat=None):
|
|
17
17
|
if plat != "ios" and plat != "android" and plat != None:
|
18
18
|
return "Supply a valid platform type!"
|
19
19
|
if plat == "ios":
|
20
|
-
|
20
|
+
publish_ios()
|
21
21
|
elif plat == "android":
|
22
|
-
|
22
|
+
publish_android()
|
23
23
|
else: #default : publish all.
|
24
|
-
|
25
|
-
|
24
|
+
publish_ios()
|
25
|
+
publish_android()
|
26
26
|
|
27
27
|
#----------------------------------------
|
28
28
|
|
@@ -0,0 +1,10 @@
|
|
1
|
+
airobo/__init__.py,sha256=wQC93xBJqTm_jHoO4hD_A9SP4vvVAMzOUM3vn_-bsB0,24
|
2
|
+
airobo/api.py,sha256=4SrLqd-aq4BX7oZ0l9Diw1gojO6gCSIrcfW4YAR6t4s,2134
|
3
|
+
airobo/cli.py,sha256=81dIVLVrsVbJa_aZK7SNzT7dHc6aEB3jIaq4Fm5MBvo,991
|
4
|
+
airobo/modules/publishAndroid.py,sha256=D1tmKAoYlIt85MhtOyAZXiVtscxiIgzFodqbVEbU_Ok,98
|
5
|
+
airobo/modules/publishIOS.py,sha256=5HtnBejXtFNGJ719ydfKX0IO4hoJD5MlxKbmD-S7Dbg,90
|
6
|
+
airobo-0.1.10.dist-info/METADATA,sha256=Vy9ZxoV1LWVsFCBePQDn_cggVEZ8kVXMeZf_6gF_SCA,208
|
7
|
+
airobo-0.1.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
+
airobo-0.1.10.dist-info/entry_points.txt,sha256=tWld-TShvEFSonDWXCvsiBq-dNOY3Qo6FI48pd1S7eE,43
|
9
|
+
airobo-0.1.10.dist-info/top_level.txt,sha256=3vchuQftD3xE45bZMuHJVTRVpiC8FKJyJwsrGAjfwKg,7
|
10
|
+
airobo-0.1.10.dist-info/RECORD,,
|
airobo-0.1.8.dist-info/RECORD
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
airobo/__init__.py,sha256=wQC93xBJqTm_jHoO4hD_A9SP4vvVAMzOUM3vn_-bsB0,24
|
2
|
-
airobo/api.py,sha256=cCEozyDxs5sd-OLvMr2pTbmRQXXwVUVvSemZP2H8EbY,2102
|
3
|
-
airobo/cli.py,sha256=81dIVLVrsVbJa_aZK7SNzT7dHc6aEB3jIaq4Fm5MBvo,991
|
4
|
-
airobo/modules/publishAndroid.py,sha256=D1tmKAoYlIt85MhtOyAZXiVtscxiIgzFodqbVEbU_Ok,98
|
5
|
-
airobo/modules/publishIOS.py,sha256=5HtnBejXtFNGJ719ydfKX0IO4hoJD5MlxKbmD-S7Dbg,90
|
6
|
-
airobo-0.1.8.dist-info/METADATA,sha256=ytIawaTNSoF8CVbsaXayxpSoBO1BICPDkMZ8bMomtQk,207
|
7
|
-
airobo-0.1.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
-
airobo-0.1.8.dist-info/entry_points.txt,sha256=tWld-TShvEFSonDWXCvsiBq-dNOY3Qo6FI48pd1S7eE,43
|
9
|
-
airobo-0.1.8.dist-info/top_level.txt,sha256=3vchuQftD3xE45bZMuHJVTRVpiC8FKJyJwsrGAjfwKg,7
|
10
|
-
airobo-0.1.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|