mumuki-html-runner 1.0.2 → 1.0.3
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/test_hook.rb +2 -4
- 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: 96f981d83ca13a410ece18b79000794a097c5320
|
4
|
+
data.tar.gz: 7b2e686c946f01cd0f01a0d7c69949a906c4d2d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d1ca79161aea5c92839f731d2cdb0e39c747b8afee9336a5d438fcd5e9ae168dac8eda7e0e565ad8a7b5a22ac751dd2c87e254892e6f85d308b817e177fc867
|
7
|
+
data.tar.gz: cd2aad309c2ec8947b844a8df06f3a699284415120bc389209bc7a4b9e316433620379c0a4ff5a43b3c7c15ed7961bf2f853b976f658cc03b39640a9313ea130
|
data/lib/test_hook.rb
CHANGED
@@ -2,7 +2,7 @@ require 'mumukit/hook'
|
|
2
2
|
|
3
3
|
class String
|
4
4
|
def visible_chars
|
5
|
-
gsub(/\s+/, '')
|
5
|
+
gsub(/\s+/, '').downcase
|
6
6
|
end
|
7
7
|
end
|
8
8
|
|
@@ -23,9 +23,7 @@ class HtmlTestHook < Mumukit::Hook
|
|
23
23
|
end
|
24
24
|
|
25
25
|
def render_html(actual)
|
26
|
-
"<br><iframe
|
27
|
-
style=\"border-color: #e6e6e6; border-style: solid; border-width: thin; width: 100%;\"
|
28
|
-
srcdoc=\"#{actual}\"></iframe>"
|
26
|
+
"<br><iframe style=\"border-color: #e6e6e6; border-style: solid; border-width: thin; width: 100%;\" srcdoc=\"#{actual.gsub('"', '\"')}\"></iframe>"
|
29
27
|
end
|
30
28
|
|
31
29
|
end
|