dom 0.5.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. checksums.yaml +4 -4
  2. data/CHART.html +429 -0
  3. data/MANUAL.html +414 -0
  4. data/lib/dom.rb +67 -49
  5. data/license +9 -0
  6. data/spec +387 -0
  7. 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.5.1
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: 2015-12-25 00:00:00.000000000 Z
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.5.1
74
+ rubygems_version: 2.6.4
68
75
  signing_key:
69
76
  specification_version: 4
70
- summary: Creates HTML DOM strings
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: []