html_slice 0.1.0 → 0.2.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 +4 -4
- data/lib/html_slice/version.rb +1 -1
- data/lib/html_slice.rb +23 -22
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6245ada66a612642275543da0386d0d24156a35ea62dbb862c653f297c3510b0
|
4
|
+
data.tar.gz: d3e1d037b9eadae637d63b1201b4d369ce5f78bce92bf5987be300f6522ba6dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8608628b7836a7a04608e6d571b3be3ccf5e3f2ee8ec88a56e524e96a536ce84d3949ef59f5c948f55328fee6a938652516b32fa13688bfe4a70a486b2a7bf2
|
7
|
+
data.tar.gz: 35f65979d6eea4aef9f2a034827b5beb05fc7304ae557d7112b8be0006ccb13ad3bb990fbc8c1b02c768a54139241824babb58b01f38e91f9806b6d1b8d08af7
|
data/lib/html_slice/version.rb
CHANGED
data/lib/html_slice.rb
CHANGED
@@ -52,7 +52,7 @@ module HtmlSlice
|
|
52
52
|
script
|
53
53
|
nav
|
54
54
|
area
|
55
|
-
]
|
55
|
+
].freeze
|
56
56
|
|
57
57
|
EMPTY_TAGS = %i[
|
58
58
|
area
|
@@ -66,22 +66,25 @@ module HtmlSlice
|
|
66
66
|
source
|
67
67
|
].freeze
|
68
68
|
|
69
|
-
|
70
|
-
|
69
|
+
DEFAULT_SLICE = :default
|
70
|
+
|
71
|
+
def html_layout(html_slice_current_id = DEFAULT_SLICE, &block)
|
72
|
+
html_slice(
|
73
|
+
html_slice_current_id,
|
74
|
+
wrap: ["<!DOCTYPE html><html>", "</html>"],
|
75
|
+
&block
|
76
|
+
)
|
71
77
|
end
|
72
78
|
|
73
|
-
def html_slice(
|
79
|
+
def html_slice(html_slice_current_id = DEFAULT_SLICE, wrap: ["", ""], &block)
|
80
|
+
@html_slice_current_id = html_slice_current_id
|
74
81
|
if block_given?
|
75
|
-
|
76
|
-
|
77
|
-
else
|
78
|
-
wrap = ['','']
|
79
|
-
end
|
80
|
-
@html_slice = wrap[0].dup
|
82
|
+
@html_slice ||= {}
|
83
|
+
@html_slice[@html_slice_current_id] = wrap[0].dup
|
81
84
|
instance_eval(&block)
|
82
|
-
@html_slice << wrap[1]
|
85
|
+
@html_slice[@html_slice_current_id] << wrap[1]
|
83
86
|
else
|
84
|
-
@html_slice
|
87
|
+
@html_slice[@html_slice_current_id] || ""
|
85
88
|
end
|
86
89
|
end
|
87
90
|
|
@@ -92,7 +95,7 @@ module HtmlSlice
|
|
92
95
|
end
|
93
96
|
|
94
97
|
def _(content)
|
95
|
-
@html_slice << content.to_s
|
98
|
+
@html_slice[@html_slice_current_id] << content.to_s
|
96
99
|
end
|
97
100
|
|
98
101
|
def tag(tag_name, *args, &block)
|
@@ -103,7 +106,7 @@ module HtmlSlice
|
|
103
106
|
private
|
104
107
|
|
105
108
|
def parse_html_tag_arguments(args)
|
106
|
-
content =
|
109
|
+
content = ""
|
107
110
|
attributes = {}
|
108
111
|
|
109
112
|
first_argument = args.shift
|
@@ -121,22 +124,20 @@ module HtmlSlice
|
|
121
124
|
open_tag = build_html_open_tag(tag_name, attributes)
|
122
125
|
|
123
126
|
if block_given?
|
124
|
-
@html_slice << open_tag << ">"
|
127
|
+
@html_slice[@html_slice_current_id] << open_tag << ">"
|
125
128
|
instance_eval(&block)
|
126
|
-
@html_slice << "</#{tag_name}>"
|
129
|
+
@html_slice[@html_slice_current_id] << "</#{tag_name}>"
|
130
|
+
elsif content.empty? && EMPTY_TAGS.include?(tag_name)
|
131
|
+
@html_slice[@html_slice_current_id] << open_tag << "/>"
|
127
132
|
else
|
128
|
-
|
129
|
-
@html_slice << open_tag << "/>"
|
130
|
-
else
|
131
|
-
@html_slice << open_tag << ">" << content << "</#{tag_name}>"
|
132
|
-
end
|
133
|
+
@html_slice[@html_slice_current_id] << open_tag << ">" << content << "</#{tag_name}>"
|
133
134
|
end
|
134
135
|
end
|
135
136
|
|
136
137
|
def build_html_open_tag(tag_name, attributes)
|
137
138
|
open_tag = "<#{tag_name}"
|
138
139
|
attributes.each do |key, value|
|
139
|
-
open_tag << " #{key.to_s.gsub(
|
140
|
+
open_tag << " #{key.to_s.gsub("_", "-")}='#{value}'"
|
140
141
|
end
|
141
142
|
open_tag
|
142
143
|
end
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html_slice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- henrique-ft
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: Enable Ruby classes the ability to generate reusable pieces of html
|
14
14
|
email:
|
15
15
|
- hriqueft@gmail.com
|
16
16
|
executables: []
|
@@ -42,5 +42,5 @@ requirements: []
|
|
42
42
|
rubygems_version: 3.5.16
|
43
43
|
signing_key:
|
44
44
|
specification_version: 4
|
45
|
-
summary:
|
45
|
+
summary: Enable Ruby classes the ability to generate reusable pieces of html
|
46
46
|
test_files: []
|