atk_toolbox 0.0.125 → 0.0.126
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/atk/yaml_info_parser.rb +1 -1
- data/lib/atk_toolbox/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: 57012bac4c7f283b708959f31767468a6462cdc03fe17ccedf389179e57ff554
|
|
4
|
+
data.tar.gz: 525756a93ce1a7fc587e5fccccf1106d7b0d01815251edc943d90209291ca26c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80e4489665300858017f8ebd8bbcb45bfb47ba80b844db26999b1ad50822d014a81e34b596bf450537db0b7c8655034addf733d5e4600cdc2dc5c4b767d4ad85
|
|
7
|
+
data.tar.gz: 1ef3e501ed87846015bb249ac16702b9d77e442553f246b67c468aaf2c4febe8440287d1cc394a20cdeaebdea741aa44ff628115ce3bef0d8a51cfc63ca4ab16
|
data/lib/atk/yaml_info_parser.rb
CHANGED
|
@@ -256,7 +256,7 @@ class Info
|
|
|
256
256
|
# Dont add a source_path if its an absolute path
|
|
257
257
|
if not each_value.size > 0 && each_value[0] == '/'
|
|
258
258
|
# convert the path into an absolute path
|
|
259
|
-
@paths[each_key] = FileSystem.join(
|
|
259
|
+
@paths[each_key] = FileSystem.join(@path, each_value)
|
|
260
260
|
end
|
|
261
261
|
end
|
|
262
262
|
end
|
data/lib/atk_toolbox/version.rb
CHANGED