appscreens-io-uploader 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/bin/appscreens-io-uploader +7 -0
- data/lib/appscreensIoUploader/runner.rb +1 -1
- data/lib/appscreensIoUploader/uploader.rb +3 -1
- data/lib/appscreensIoUploader/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6648cfd40417f57c27639cc88ae424ac0478caaf
|
4
|
+
data.tar.gz: d3df647dfc9e8227c30758bf0bb6a7421c88cfa2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea88c1b1126fa1e9d37674db8b70eb23b9d1b21fdec862ddcb7bd98a23f4e478ed27263ad5b692e20a9f016e422cbe2688f3872ba6ab4248d9287aec52a6f496
|
7
|
+
data.tar.gz: 1a6fa989b23edeb3481cbb4b10495d99804d9c45a30127af4819cdffbf33972125a7a244f58d6ab6befc8787db7075e89a112c7997bdbc663ca82176ff5c5392
|
data/README.md
CHANGED
@@ -24,7 +24,7 @@ Call ```appscreens-io-uploader``` in the forlder where your screenshots are loca
|
|
24
24
|
|
25
25
|
To upload screens with a different screensize than 5.5 inch use the --screenSize option (deliver string syntax use ```appscreens-io-uploader existing_project --help```)
|
26
26
|
|
27
|
-
appscreens-io-uploader [project_id] --screenSize=iOS-4
|
27
|
+
appscreens-io-uploader [project_id] --screenSize=iOS-4-in
|
28
28
|
|
29
29
|
## Uninstall
|
30
30
|
|
data/bin/appscreens-io-uploader
CHANGED
@@ -13,7 +13,7 @@ module AppscreensIoUploader
|
|
13
13
|
maxScreens = 5
|
14
14
|
|
15
15
|
if (project_id.length != 10)
|
16
|
-
Helper.log.error "No valid
|
16
|
+
Helper.log.error "No valid project_id '#{project_id}' must be exactly 10 chars (copy it from your appscreens.io/[project_id] URL)"
|
17
17
|
return
|
18
18
|
end
|
19
19
|
|
@@ -32,12 +32,14 @@ module AppscreensIoUploader
|
|
32
32
|
end
|
33
33
|
|
34
34
|
end
|
35
|
+
|
35
36
|
else
|
36
37
|
Helper.log.error "not able to fetch your project, make sure it exsists under #{base_uri}/#{project_id}"
|
37
38
|
return
|
38
39
|
end
|
39
40
|
|
40
|
-
Helper.log.info "successfully
|
41
|
+
Helper.log.info "successfully uploaded all your screens ... you can edit them under #{base_uri}/#{project_id}".green
|
41
42
|
end
|
42
43
|
end
|
44
|
+
|
43
45
|
end
|