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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6245ada66a612642275543da0386d0d24156a35ea62dbb862c653f297c3510b0
4
- data.tar.gz: d3e1d037b9eadae637d63b1201b4d369ce5f78bce92bf5987be300f6522ba6dc
3
+ metadata.gz: 14881c23bd492c5f3153a2ea770b4b633721983cbd1d35558e0e55c396bec87f
4
+ data.tar.gz: 3537233117edbadeaa0fa0e7f02c7463d93abdd0ac8c7e6cf54b4f293aaf523c
5
5
  SHA512:
6
- metadata.gz: c8608628b7836a7a04608e6d571b3be3ccf5e3f2ee8ec88a56e524e96a536ce84d3949ef59f5c948f55328fee6a938652516b32fa13688bfe4a70a486b2a7bf2
7
- data.tar.gz: 35f65979d6eea4aef9f2a034827b5beb05fc7304ae557d7112b8be0006ccb13ad3bb990fbc8c1b02c768a54139241824babb58b01f38e91f9806b6d1b8d08af7
6
+ metadata.gz: 76107691df8555a630e8e65ba53fa7fe7926f536cf63a5c48defef81049e2f6916a104cafcbfed02be54801d4be663fdc44ab1c7d650caa91aeb6ec9e09927e5
7
+ data.tar.gz: d056915ccba22cc4c4fce0a6dc0b0c743a0dec87e67bf8e2092d80e6bf125388bf8b7368e611d90655f5f860e5a901902f270fe09b08b5dba8d3247fc60c75c1
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HtmlSlice
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
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 block_given?
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 block_given?
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.gsub("_", "-")}='#{value}'"
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.0
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-01 00:00:00.000000000 Z
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: