vident-view_component 0.3.0 → 0.4.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: b6b0ed224d67efe9c374ab3a4548e72841aed91f16b260699d73e83638db8c1f
4
- data.tar.gz: 8eab3e009e1a926d252b1fda0d0d33c12072ecd811bbc7a9293a2e1a5808e080
3
+ metadata.gz: ad652aba56d18b01a7991dbebe9c352f039c4bfb0279cfa1a9236a5db1af3d01
4
+ data.tar.gz: 790cedcfba8761ccbb75762ceaa6f698a844ceac7fa5460cefcd2f03a4df3264
5
5
  SHA512:
6
- metadata.gz: 9e8ce085af82d75440334389970ab16a752bc542c8ee2e1b22ae5f48c027423a99e1e4905633136e0555b112ab473613b36a8488b85c5efde5d7e360b3d5d180
7
- data.tar.gz: f9a5b8f36fd2f0bbc7d477dee548ffa6b2521a585443ee8b1f25ad34cc0643336ece401df6408e9ad21bee1eba60c4651f5f56c805a4ae2d485c6e3f84ab4f12
6
+ metadata.gz: 4084e8a506ff759189f8522ebf7dd9fd77510ede51da2555ff9ce7ecba864ef952633fa1392ebb0cfc2dcd6254484077a1c769f8d77d88e13a8ca425589b800f
7
+ data.tar.gz: df83bd0e4b7976b6545662d1e77f14767d8919afc2138e744cd1ee9b8ffd09dc71102e1a1e47aaeede590cc47d6b8d8a4d69ed42b7424e60b9dad41d733c36e6
@@ -26,11 +26,12 @@ module Vident
26
26
  def call
27
27
  # Generate outer tag options and render
28
28
  tag_type = content_tag_type
29
+ child_content = content # Evaluate before generating the outer tag options to ensure DSL methods are executed
29
30
  options = content_tag_options
30
31
  if SELF_CLOSING_TAGS.include?(tag_type)
31
32
  view_context.tag(tag_type, options)
32
33
  else
33
- view_context.content_tag(tag_type, content, options)
34
+ view_context.content_tag(tag_type, child_content, options)
34
35
  end
35
36
  end
36
37
 
@@ -1,5 +1,5 @@
1
1
  module Vident
2
2
  module ViewComponent
3
- VERSION = "0.3.0"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vident-view_component
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ierodiaconou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-12 00:00:00.000000000 Z
11
+ date: 2024-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: railties
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '8'
22
+ version: '8.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,27 @@ dependencies:
29
29
  version: '7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '8'
32
+ version: '8.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: activesupport
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '7'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '8.0'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '7'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '8.0'
33
53
  - !ruby/object:Gem::Dependency
34
54
  name: vident
35
55
  requirement: !ruby/object:Gem::Requirement
@@ -108,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
128
  - !ruby/object:Gem::Version
109
129
  version: '0'
110
130
  requirements: []
111
- rubygems_version: 3.4.10
131
+ rubygems_version: 3.5.3
112
132
  signing_key:
113
133
  specification_version: 4
114
134
  summary: Vident with ViewComponent