html_slice 0.2.0 → 0.2.1
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/lib/html_slice/version.rb +1 -1
- data/lib/html_slice.rb +6 -3
- 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: 14881c23bd492c5f3153a2ea770b4b633721983cbd1d35558e0e55c396bec87f
|
4
|
+
data.tar.gz: 3537233117edbadeaa0fa0e7f02c7463d93abdd0ac8c7e6cf54b4f293aaf523c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76107691df8555a630e8e65ba53fa7fe7926f536cf63a5c48defef81049e2f6916a104cafcbfed02be54801d4be663fdc44ab1c7d650caa91aeb6ec9e09927e5
|
7
|
+
data.tar.gz: d056915ccba22cc4c4fce0a6dc0b0c743a0dec87e67bf8e2092d80e6bf125388bf8b7368e611d90655f5f860e5a901902f270fe09b08b5dba8d3247fc60c75c1
|
data/lib/html_slice/version.rb
CHANGED
data/lib/html_slice.rb
CHANGED
@@ -78,7 +78,7 @@ module HtmlSlice
|
|
78
78
|
|
79
79
|
def html_slice(html_slice_current_id = DEFAULT_SLICE, wrap: ["", ""], &block)
|
80
80
|
@html_slice_current_id = html_slice_current_id
|
81
|
-
if
|
81
|
+
if block
|
82
82
|
@html_slice ||= {}
|
83
83
|
@html_slice[@html_slice_current_id] = wrap[0].dup
|
84
84
|
instance_eval(&block)
|
@@ -122,8 +122,11 @@ module HtmlSlice
|
|
122
122
|
|
123
123
|
def generate_and_append_html_tag(tag_name, content, attributes, &block)
|
124
124
|
open_tag = build_html_open_tag(tag_name, attributes)
|
125
|
+
@html_slice ||= {}
|
126
|
+
@html_slice_current_id ||= DEFAULT_SLICE
|
127
|
+
@html_slice[@html_slice_current_id] ||= +""
|
125
128
|
|
126
|
-
if
|
129
|
+
if block
|
127
130
|
@html_slice[@html_slice_current_id] << open_tag << ">"
|
128
131
|
instance_eval(&block)
|
129
132
|
@html_slice[@html_slice_current_id] << "</#{tag_name}>"
|
@@ -137,7 +140,7 @@ module HtmlSlice
|
|
137
140
|
def build_html_open_tag(tag_name, attributes)
|
138
141
|
open_tag = "<#{tag_name}"
|
139
142
|
attributes.each do |key, value|
|
140
|
-
open_tag << " #{key.to_s.
|
143
|
+
open_tag << " #{key.to_s.tr("_", "-")}='#{value}'"
|
141
144
|
end
|
142
145
|
open_tag
|
143
146
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html_slice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- henrique-ft
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Enable Ruby classes the ability to generate reusable pieces of html
|
14
14
|
email:
|