pixab 2.3.3 → 2.3.4
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/lib/Utilities/UserInfo.rb +2 -5
- data/lib/pixab/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8bde21c80d31a7f727a34a67e6fdd26c3a6264f52dd2cd2c58e903667bee606
|
4
|
+
data.tar.gz: ec05ecc1d60ccd9c91e5e5abf26c32dbbbbb92afcee0ffcecc11772d917f0985
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12c0ebd459f0ce193fc5075891ace6ed00c73f7d6b9115243f5fc2573ce31941d3a9af174799d63b555fb16c40ff2380e647f34880eb160889cfd663cfaa1fdd
|
7
|
+
data.tar.gz: d0fdddf97e5c9a98da5d74355ec514c21072a92d55cf433bfaf3119ed75b6f2479c82d004dc62779f50f38b55a5ec0b9000bb15caddec876e54f4169cc36cd1a
|
data/lib/Utilities/UserInfo.rb
CHANGED
@@ -8,10 +8,7 @@ module Pixab
|
|
8
8
|
attr_accessor :platform
|
9
9
|
|
10
10
|
def platform
|
11
|
-
|
12
|
-
@platform = readPlatform
|
13
|
-
end
|
14
|
-
return @platform
|
11
|
+
@platform ||= readPlatform
|
15
12
|
end
|
16
13
|
|
17
14
|
def git_repos
|
@@ -22,7 +19,7 @@ module Pixab
|
|
22
19
|
|
23
20
|
def git_sub_repos
|
24
21
|
sub_repos_path = nil
|
25
|
-
if
|
22
|
+
if platform.is_android
|
26
23
|
parent_dir = File.dirname(Dir.pwd)
|
27
24
|
sub_repos_path = File.join(parent_dir, 'pixab_libraries')
|
28
25
|
end
|
data/lib/pixab/version.rb
CHANGED