rbbt-rest 1.8.155 → 1.8.156
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/rbbt/rest/common/misc.rb +3 -6
- 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: d834a55e3a14310a690923ec88b85733b8fbe63c476f5892a8c3badd6486d349
|
|
4
|
+
data.tar.gz: 336c64e121f053c8e72b24c17e361fe15ec4d1cad7cb506e9e31a816be6f699e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6b7649f158a08865d77727391cc67e718c15df0b5fcce84144ba6c0ed3e9e4962092ec482faa98741436b7ba372da124379867b3ac01f9a8046ac24134d5aa7
|
|
7
|
+
data.tar.gz: 0e28195c234f79d43c4efe73402be0394f4977b415e5917004772d811cf06215fd9d4dd646eb1892a7b7c554f576d9ff0030b7e26f6291b89e2c44f5f9aeb22a
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
require 'rbbt/util/misc'
|
|
2
|
+
require 'haml'
|
|
2
3
|
|
|
3
4
|
module RbbtRESTHelpers
|
|
4
5
|
class Retry < Exception; end
|
|
@@ -321,9 +322,7 @@ module RbbtRESTHelpers
|
|
|
321
322
|
|
|
322
323
|
end
|
|
323
324
|
|
|
324
|
-
|
|
325
|
-
module Haml::Filters::DeferJS
|
|
326
|
-
include Haml::Filters::Base
|
|
325
|
+
class Haml::Filters::DeferJS < Haml::Filters::Base
|
|
327
326
|
|
|
328
327
|
def render(text)
|
|
329
328
|
step_path = Thread.current["step_path"]
|
|
@@ -340,9 +339,7 @@ EOF
|
|
|
340
339
|
end
|
|
341
340
|
end
|
|
342
341
|
|
|
343
|
-
|
|
344
|
-
module Haml::Filters::Documentation
|
|
345
|
-
include Haml::Filters::Base
|
|
342
|
+
class Haml::Filters::Documentation < Haml::Filters::Base
|
|
346
343
|
|
|
347
344
|
def render(text)
|
|
348
345
|
text = "<br/>" if text.strip.empty?
|