view_component_helper 0.4.2 → 0.4.3
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 +4 -4
- data/Gemfile.lock +6 -2
- data/README.md +3 -1
- data/lib/view_component_helper/version.rb +1 -1
- data/lib/view_component_helper/view_helper.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a915d8e179ad5dc827c3d16b10321d6aa1786cc5962fc3f996e2a3486c95a8a2
|
4
|
+
data.tar.gz: f8aeacbbde5ab6eb1f97bf66aaa256b08d989d67c2b0e786744f301d9364def5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e230c9bc9621db75c80bbd5b44722bbdbde335de06f10ea065a952e8887e671b3703929ae25df8d539933188867a3dadf408fc332db87c2f56b0f9a278b243cc
|
7
|
+
data.tar.gz: c858e698106588bad51d7ed29ff88a074b593df7ffa0093c3ff420259373e6e700b943e21265e00449644639d287fb592da0081dcadcb3cb92e9bb65fdba653a
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
view_component_helper (0.4.
|
4
|
+
view_component_helper (0.4.3)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -94,6 +94,7 @@ GEM
|
|
94
94
|
marcel (1.0.2)
|
95
95
|
method_source (1.0.0)
|
96
96
|
mini_mime (1.1.2)
|
97
|
+
mini_portile2 (2.8.4)
|
97
98
|
minitest (5.18.1)
|
98
99
|
net-imap (0.3.6)
|
99
100
|
date
|
@@ -105,6 +106,9 @@ GEM
|
|
105
106
|
net-smtp (0.3.3)
|
106
107
|
net-protocol
|
107
108
|
nio4r (2.5.9)
|
109
|
+
nokogiri (1.15.3)
|
110
|
+
mini_portile2 (~> 2.8.2)
|
111
|
+
racc (~> 1.4)
|
108
112
|
nokogiri (1.15.3-x86_64-darwin)
|
109
113
|
racc (~> 1.4)
|
110
114
|
parallel (1.23.0)
|
@@ -188,7 +192,7 @@ GEM
|
|
188
192
|
zeitwerk (2.6.8)
|
189
193
|
|
190
194
|
PLATFORMS
|
191
|
-
|
195
|
+
ruby
|
192
196
|
|
193
197
|
DEPENDENCIES
|
194
198
|
rails
|
data/README.md
CHANGED
@@ -25,7 +25,9 @@ To use ViewComponent, you'll need to follow the example below. By utilizing this
|
|
25
25
|
<%= render(MessageComponent.new(name: "World")) %>
|
26
26
|
|
27
27
|
# After
|
28
|
-
<%=
|
28
|
+
<%= render_vc("messageComponent", name: "World") %>
|
29
|
+
or
|
30
|
+
<%= vc("messageComponent", name: "World") %>
|
29
31
|
```
|
30
32
|
|
31
33
|
Make sure to incorporate ViewComponent as described in the reference link to enhance your application's functionality.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: view_component_helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yamitake
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'The ''view_component_helper'' gem streamlines View helper method invocation
|
14
14
|
for view_component. Simplify integration and boost productivity. '
|