high_five 0.3.11 → 0.3.12
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/high_five/android_helper.rb +3 -0
- data/lib/high_five/ios_helper.rb +3 -0
- data/lib/high_five/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: e717e3ca8620ee1a2afe2916de2c8ca47ca01f71
|
|
4
|
+
data.tar.gz: 075c12499c27c05326aad891f90e8b79df950bb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aebc61c694e61cb5e0d09f239b60901db2ceb98c5f6c97413d25a19466a6b50266f04dde818d593e99052b782654d3c06ec9b7c2a72649518a286c4c354f17fe
|
|
7
|
+
data.tar.gz: b510fd081ca5f8f0fead43f6afb8d16533b7a073caa1e37ff3124362ec73f74a9443473a014c4a3d14f73de64eabccb16058f4001f765958b6d7a13432ea6517
|
|
@@ -22,6 +22,9 @@ module HighFive
|
|
|
22
22
|
return platform_config.android_manifest if platform_config.android_manifest
|
|
23
23
|
|
|
24
24
|
destination_dir = platform_config.destination
|
|
25
|
+
if platform_config.cordova_path
|
|
26
|
+
destination_dir ||= "#{platform_config.cordova_path}/platforms/android"
|
|
27
|
+
end
|
|
25
28
|
root_dir = destination_dir
|
|
26
29
|
while true
|
|
27
30
|
glob = Dir[File.join(root_dir, "AndroidManifest.xml")]
|
data/lib/high_five/ios_helper.rb
CHANGED
|
@@ -41,6 +41,9 @@ module HighFive
|
|
|
41
41
|
def xcodeproj_path
|
|
42
42
|
platform_config = base_config.build_platform_config(:ios)
|
|
43
43
|
destination_dir = platform_config.destination
|
|
44
|
+
if platform_config.cordova_path
|
|
45
|
+
destination_dir ||= "#{platform_config.cordova_path}/platforms/ios"
|
|
46
|
+
end
|
|
44
47
|
root_dir = destination_dir
|
|
45
48
|
while true
|
|
46
49
|
glob = Dir[File.join(root_dir, "*.xcodeproj")]
|
data/lib/high_five/version.rb
CHANGED