props_template 0.22.1 → 0.22.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/props_template/base.rb +2 -0
- data/lib/props_template/layout_patch.rb +1 -1
- data/lib/props_template/version.rb +1 -1
- data/spec/props_template_spec.rb +18 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93955e5709c9e347f3f95835055436c686d76604c14cef9c3dbb8db563a6a027
|
4
|
+
data.tar.gz: de42a4e0fce0730ee877508bdba102a62fd1f6209c67c06b73e3baeb2a344dc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9120b2f653b9a72b09b5e3970f5d76cc8d4f11ee2c3bb5d51ea0de626236a15650d24ab786c5ad114416a6b80811ac73055929f229c235bce4c59701c34055d
|
7
|
+
data.tar.gz: 590bcbe4357862711c1aed726c367f2a8cab62fff2791fa558a03f429dca4d22275c059445c446514a4028e08c869e2a6af51c726732e444be964a8d1987f888
|
data/lib/props_template/base.rb
CHANGED
@@ -7,7 +7,7 @@ module Props
|
|
7
7
|
@details = extract_details(options)
|
8
8
|
template = determine_template(options)
|
9
9
|
|
10
|
-
if template.handler == Props::Handler && options[:layout]
|
10
|
+
if template.respond_to?(:handler) && template.handler == Props::Handler && options[:layout]
|
11
11
|
prepend_formats(template.format)
|
12
12
|
render_props_template(context, template, options[:layout], options[:locals])
|
13
13
|
else
|
data/spec/props_template_spec.rb
CHANGED
@@ -12,6 +12,24 @@ RSpec.describe 'Props::Base' do
|
|
12
12
|
json = Props::Base.new
|
13
13
|
expect(json.result!.strip).to eql('{}')
|
14
14
|
end
|
15
|
+
|
16
|
+
it 'resets OJ' do
|
17
|
+
json = Props::Base.new
|
18
|
+
json.set! :foo, 'bar'
|
19
|
+
attrs = json.result!.strip
|
20
|
+
|
21
|
+
expect(attrs).to eql_json({
|
22
|
+
foo: 'bar'
|
23
|
+
})
|
24
|
+
|
25
|
+
expect(json.result!.strip).to eql_json({})
|
26
|
+
|
27
|
+
json.set! :foo, 'bar'
|
28
|
+
attrs = json.result!.strip
|
29
|
+
expect(attrs).to eql_json({
|
30
|
+
foo: 'bar'
|
31
|
+
})
|
32
|
+
end
|
15
33
|
end
|
16
34
|
|
17
35
|
context 'set!' do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: props_template
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.22.
|
4
|
+
version: 0.22.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Johny Ho
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
- !ruby/object:Gem::Version
|
100
100
|
version: '0'
|
101
101
|
requirements: []
|
102
|
-
rubygems_version: 3.1.
|
102
|
+
rubygems_version: 3.1.6
|
103
103
|
signing_key:
|
104
104
|
specification_version: 4
|
105
105
|
summary: A fast JSON builder
|