dom 0.5.1 → 1.0.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/CHART.html +429 -0
- data/MANUAL.html +414 -0
- data/lib/dom.rb +67 -49
- data/license +9 -0
- data/spec +387 -0
- metadata +15 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sawa
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: htmlentities
|
@@ -38,15 +38,22 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
41
|
+
description: You can describe HTML/XML structures in Ruby language seemlessly with
|
42
|
+
other parts of Ruby code. Node embedding is described as method chaining, which
|
43
|
+
avoids unnecessary nesting, and confirms to the Rubyistic coding style.
|
42
44
|
email: []
|
43
45
|
executables: []
|
44
46
|
extensions: []
|
45
47
|
extra_rdoc_files: []
|
46
48
|
files:
|
49
|
+
- CHART.html
|
50
|
+
- MANUAL.html
|
47
51
|
- lib/dom.rb
|
52
|
+
- license
|
53
|
+
- spec
|
48
54
|
homepage: http://sawa.github.io/dom
|
49
|
-
licenses:
|
55
|
+
licenses:
|
56
|
+
- MIT
|
50
57
|
metadata: {}
|
51
58
|
post_install_message:
|
52
59
|
rdoc_options: []
|
@@ -64,8 +71,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
71
|
version: '0'
|
65
72
|
requirements: []
|
66
73
|
rubyforge_project:
|
67
|
-
rubygems_version: 2.
|
74
|
+
rubygems_version: 2.6.4
|
68
75
|
signing_key:
|
69
76
|
specification_version: 4
|
70
|
-
summary:
|
77
|
+
summary: A library to generate HTML/XML code from Ruby commands. It replaces conventional
|
78
|
+
approcaches using template engines, or certain kind of libraries with a similar
|
79
|
+
purpose.
|
71
80
|
test_files: []
|