atk_toolbox 0.0.68 → 0.0.69
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: 85e4c3316cb7ed361208c5b6eca1e920e34fe82d87463812838495e1eb828e94
|
|
4
|
+
data.tar.gz: 801a404783af8bf69ef186a1e319f486a8881a039f2ede1860912e172e873308
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de361c3e5d15148e5d8ecec6eb911ba7dbd0f55a66ad71a1476e9fcbfd61219be2d408c2002e2b73a4179ae832c2a8d0659dca885746758aa3cfa8fc39b4b136
|
|
7
|
+
data.tar.gz: 7dabf5f6539161cf8b6a3e3a22d01d57b30209f681a60cf72791323cf3be5f4143c1939bc6810e893220a27a145a6e148207ff6bd3a93d84ac563ce715218d8e
|
data/lib/atk/yaml_info_parser.rb
CHANGED
|
@@ -252,7 +252,7 @@ class Info
|
|
|
252
252
|
# Dont add a source_path if its an absolute path
|
|
253
253
|
if not each_value.size > 0 && each_value[0] == '/'
|
|
254
254
|
# convert the path into an absolute path
|
|
255
|
-
@@paths[each_key] = Info.source_path / each_value
|
|
255
|
+
@@paths[each_key] = FS.dirname(Info.source_path) / each_value
|
|
256
256
|
end
|
|
257
257
|
end
|
|
258
258
|
end
|
data/lib/atk_toolbox/version.rb
CHANGED