haml_lint 0.77.0 → 0.78.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52cf3d73b4ee4afef24de47687b64f673758976e9e39de8a85dd01e6565219f2
|
|
4
|
+
data.tar.gz: b94711d7d122679267311cb54386fe886b6123b0fcdc7568ba3e1d690e8d85f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 760321052ce79dcaf3c1eb01788ad4e2f241384f8f3418435cd0538efa99ac2a4db99dfbf76120282b5410b41e0b01410e766c4f7bee93379c11213403d88ddf
|
|
7
|
+
data.tar.gz: e6d67d1217e443a1cad3b196d85a7224b41f67bceabc2d3e27a71f8f97916d06ae9f878e3d88d39fd822383766fa56aa69baf4bc8ca187d5cd1e08c4cca7a62b
|
|
@@ -24,8 +24,8 @@ module Haml::Util
|
|
|
24
24
|
|
|
25
25
|
# Overriding the unescape_interpolation method to store the return and original string
|
|
26
26
|
# in the cache.
|
|
27
|
-
def unescape_interpolation_with_original_tracking(str,
|
|
28
|
-
value = unescape_interpolation_without_original_tracking(str,
|
|
27
|
+
def unescape_interpolation_with_original_tracking(str, *args)
|
|
28
|
+
value = unescape_interpolation_without_original_tracking(str, *args)
|
|
29
29
|
Haml::Util.unescape_interpolation_to_original_cache[value] = str
|
|
30
30
|
value
|
|
31
31
|
end
|
data/lib/haml_lint/version.rb
CHANGED