html_skeleton 0.5.5 → 0.5.6
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/README.md +2 -3
- metadata +20 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b51e674d0b2f06dd01fad882c8f7c428a0b4b43051338bf4c53776bc28d49e68
|
|
4
|
+
data.tar.gz: c486881cc2293281a495b09c2fb6902579c182b756d6c70e355f4d7331558b5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a85077f0d9d9458f6a1802b0ea090c6ec05748ed8d65b8b2ea44cdfff7f7a0643266fe442b5b8a3de06c9e814e241dbe1a714804b574ae15e39814d047fec30e
|
|
7
|
+
data.tar.gz: 1061c2d580b80308e6b5ce3e429b491a8c1ce1459c956eb509919f4945b70a2a76aba60cfaa15382468e426cd543a822df89f3ae1727f922b20d480044d888f1
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# HtmlSkeleton
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/html_skeleton)
|
|
4
|
+
[](https://rubygems.org/gems/html_skeleton)
|
|
4
5
|
|
|
5
6
|
HtmlSkeleton provides the frame for a calendar or a table,
|
|
6
7
|
i.e. no loops are required to build up the HTML structure.
|
|
@@ -119,6 +120,4 @@ cell_proc: block || ->(row, col) { "<td>#{row} #{col}</td>"}
|
|
|
119
120
|
## Miscellaneous
|
|
120
121
|
|
|
121
122
|
Copyright (c) 2012-2023 Dittmar Krall (www.matiq.com),
|
|
122
|
-
released under the MIT license
|
|
123
|
-
|
|
124
|
-
* https://opensource.org/licenses/MIT
|
|
123
|
+
released under the [MIT license](https://opensource.org/licenses/MIT).
|
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html_skeleton
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dittmar Krall
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
12
|
-
dependencies:
|
|
11
|
+
date: 2023-12-11 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: minitest
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
13
27
|
description: |2
|
|
14
28
|
A simple helper for creating HTML calendars and tables.
|
|
15
29
|
|
|
@@ -27,11 +41,10 @@ files:
|
|
|
27
41
|
- lib/html_skeleton.rb
|
|
28
42
|
- lib/html_skeleton_calendar.rb
|
|
29
43
|
- lib/html_skeleton_table.rb
|
|
30
|
-
homepage:
|
|
44
|
+
homepage: https://github.com/matique/html_skeleton
|
|
31
45
|
licenses:
|
|
32
46
|
- MIT
|
|
33
|
-
metadata:
|
|
34
|
-
source_code_uri: https://github.com/matique/html_skeleton
|
|
47
|
+
metadata: {}
|
|
35
48
|
post_install_message:
|
|
36
49
|
rdoc_options: []
|
|
37
50
|
require_paths:
|
|
@@ -47,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
47
60
|
- !ruby/object:Gem::Version
|
|
48
61
|
version: '0'
|
|
49
62
|
requirements: []
|
|
50
|
-
rubygems_version: 3.4.
|
|
63
|
+
rubygems_version: 3.4.20
|
|
51
64
|
signing_key:
|
|
52
65
|
specification_version: 4
|
|
53
66
|
summary: A simple helper for creating HTML calendars and tables
|