props_template 0.30.0 → 0.31.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: 4f39427b50eb55be6d32d7e4b2217653cf316161c47cbc8e983cb5db9d2884ef
4
- data.tar.gz: 951b23bdd0db81fcd1703d772d471065b79e56ebfb2f4620d68cf35ccd54dfa8
3
+ metadata.gz: 70f4fab3905ff69848d013d7c338bdcd2c83d87a946e6a23dc28ef1361bb69bf
4
+ data.tar.gz: 441cea11b9c19da3e2179771f7e6df2d370e79e7888955f4401daae96b4088a1
5
5
  SHA512:
6
- metadata.gz: 4b6132b57aae55b5fdaf3b4c8cb64bf80f6b867ab07dda003eca4a20a487fd10a6879e9877486d2fa1c3781ba4c4e38f85ee83406a668cf54b2ebe4335415ce6
7
- data.tar.gz: cf2ebd26707c62748c40e646d855251028b8d27e0b3b26ecd1b15ad704ed37740065e3ddbbebeab1f0be0e99ab8b733932e120c521f5eb363fd6dc25be5a5c28
6
+ metadata.gz: a61229bdb5f3c4e61a66a508b371a3e3d74ddffd0091b03b1bed47ba34d36f5e2a7d128fc8e8980fab992f2c784dce670687af72ab9c75af58a5e590898daac9
7
+ data.tar.gz: 1fdda8df4b8c30f41b3ce5c4537c90f129f7ef7ee853fffa4e3b8dc5afbfdbc64ebf9017ec332ad66d863fd16b5cd16fcaf44431aeb1315793ceb6b5490d349d
data/README.md CHANGED
@@ -29,8 +29,6 @@ conveniences and magic.
29
29
  json.flash flash.to_h
30
30
 
31
31
  json.menu do
32
- # By default, all keys will be formatted as camelCase. See #change_key_format
33
-
34
32
  json.currentUser do
35
33
  json.email current_user.email
36
34
  json.avatar current_user.avatar
@@ -10,18 +10,9 @@ module Props
10
10
  end
11
11
 
12
12
  def render_props_template(view, template, path, locals)
13
- view.instance_eval <<~RUBY, __FILE__, __LINE__ + 1
14
- def virtual_path_of_template;"#{template.virtual_path}";end
15
- RUBY
16
-
17
- # Deprecated: Usage of virtual_path_of_template in local_assigns will
18
- # be removed for a method definition above
19
- layout_locals = locals.dup
20
- layout_locals[:virtual_path_of_template] = template.virtual_path
21
-
22
- layout = resolve_layout(path, layout_locals.keys, [formats.first])
13
+ layout = resolve_layout(path, locals.keys, [formats.first])
23
14
  body = if layout
24
- layout.render(view, layout_locals) do |json|
15
+ layout.render(view, locals) do |json|
25
16
  template.render(view, locals)
26
17
  end
27
18
  else
@@ -1,3 +1,3 @@
1
1
  module Props
2
- VERSION = "0.30.0".freeze
2
+ VERSION = "0.31.0".freeze
3
3
  end
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.30.0
4
+ version: 0.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johny Ho
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-26 00:00:00.000000000 Z
11
+ date: 2023-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport