props_template 0.33.0 → 0.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b586e88a8525a50dca7c4c045c965e150db70214dcd409c8f548eb00f2b229c9
4
- data.tar.gz: 03f66f95514d80127c949b2aa6de035885718887d5ca300a6052e2b7b1215f2a
3
+ metadata.gz: a4bda132d64b759a038cef1cef91f33ce8d2b839c6dfc2178f4b878772c60001
4
+ data.tar.gz: 2774815590c928cd0b3d01a3d043f74b41086b44e9cd9e5d2947b3fbc44aeeab
5
5
  SHA512:
6
- metadata.gz: d328e82015fb1079fc6593f9441b30259bbfe54b414ce260f6522e66754537e7cb8b5449c2bdcd835b6df4a8246d5dedfb318faefeccb8a270b0419a2453de2a
7
- data.tar.gz: 1066e3c36218fc2c5d87f8a309439c0fc01f44ef4a60c5fe173076ab6f2c5b662fb92e8c75b95ce20797760b173ac58f615baded52aea272b5d36e4706b41952
6
+ metadata.gz: 34da08613e5545076e112105483fe1c2a6f851a730ffd126f48834bf08103385a31c9bff04190753bbfb1ccc55a631b5014d97f94c02f0bd097964bd3ad125a6
7
+ data.tar.gz: b0a945bc75fe63b7bc08efc64e7b4de70093ff10c298bb0f5c9f80cf828cc33211553a2bdcc0aed5a0336f7d8a6580e96c126c4c745a8a350b4ec81abf74418b
data/README.md CHANGED
@@ -72,7 +72,7 @@ gem 'props_template'
72
72
  and run `bundle`.
73
73
 
74
74
  Optionally add the [core ext](#array-core-extension) to an initializer if you
75
- want to [dig](#traverse) into your templates.
75
+ want to [dig](#traversing) into your templates.
76
76
 
77
77
  ```ruby
78
78
  require 'props_template/core_ext'
@@ -1,7 +1,7 @@
1
1
  module Props
2
2
  module LayoutPatch
3
3
  def render_template(view, template, layout_name, locals)
4
- unless view.respond_to? :active_template_virtual_path
4
+ if !view.respond_to?(:active_template_virtual_path) && template.respond_to?(:virtual_path)
5
5
  view.instance_eval <<~RUBY, __FILE__, __LINE__ + 1
6
6
  def active_template_virtual_path; "#{template.virtual_path}";end
7
7
  RUBY
@@ -1,3 +1,3 @@
1
1
  module Props
2
- VERSION = "0.33.0".freeze
2
+ VERSION = "0.34.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.33.0
4
+ version: 0.34.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: 2024-04-07 00:00:00.000000000 Z
11
+ date: 2024-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport