props_template 0.22.1 → 0.22.2
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/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: 34091400c3d4780e7af54a7f5c413384fc50628fe401ed3922cfd14e8d11c5d6
|
4
|
+
data.tar.gz: 0ca3c6fb38f9d9c7b4d149e0c68bad8366de9cc0407d0d3a0492d335cad4566b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86d5f12f9319172b0880c202063eeae1a3a8ad963a52430ca7f0c06e77000ab296e82832a432823e46c2fe87116ca47a3a0a314c4367422110f6da0761ad6b9b
|
7
|
+
data.tar.gz: 721aa65b13b218be19bdfe1a10c032f52929b4c61228c7947ae49d92a9d08aca2022ec2043f1a691d4b127bb63426e5ca25920af453a35ec4da49464fd64809b
|
data/lib/props_template/base.rb
CHANGED
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.2
|
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-01-30 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
|