html-table 1.5.1 → 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a908e60fdbe3fecf3fa94be736696edc9c36005ae9df7fe118d2380992b43e5a
4
- data.tar.gz: bc0f0554f82383e7e63b0e47fd786e8159f27cbe2720f4658b184410fb723e6d
3
+ metadata.gz: 87568bbb38d42ec54979f7ef7eaea71e4cc239816259e57ad29adc3a1379315e
4
+ data.tar.gz: 22b02c5c3d5a818f8f2671f4d3f4b8b3b0fbca163f61c0206dff1fae113ab11f
5
5
  SHA512:
6
- metadata.gz: 7527011bee9e70bbe0ea903c5762d7dc0bc7ab5a39c6afa04c4668646798766867aa8241289bbf2e72254cce392ed4427692e8c7c3f9dd13d4583a1ca5869096
7
- data.tar.gz: 64e8a5a420e2cb421ecd7ddfca46b7f19f963b3a1de2746a1fa76f7b9028b67c60224c32a0fe319150efecba870e699ca28c60acb0beec3c82919e81acf097ba
6
+ metadata.gz: db5f8612ed1deb09257bcc04f35457b88d5cdb3ee1b1da08f6bde3c1a1638773aba80c7505a9df754bc38de46fff926b811e33d65b1fa2f38194d5b463743bfa
7
+ data.tar.gz: ca66a02ceac6eb5c44dd1f48943a66a82552ae2a850f8b406f9768156274038185babd912066b224a87a773f6b96a28e09141fb6498314b02980ecc99083d807
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.5.2 - 4-Nov-2018
2
+ * Added metadata to gemspec.
3
+
1
4
  == 1.5.1 - 31-Mar-2018
2
5
  * Fixed deprecation warnings.
3
6
  * Updated cert.
data/README CHANGED
@@ -90,7 +90,7 @@
90
90
  http://github.com/djberg96/html-table
91
91
 
92
92
  == Future Plans
93
- Documentation improvements (include inline links to other files).
93
+ None at this time.
94
94
 
95
95
  == Acknowledgements
96
96
  Anthony Peacock, for giving me ideas with his HTML::Table Perl module.
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'html-table'
5
- spec.version = '1.5.1'
5
+ spec.version = '1.5.2'
6
6
  spec.author = 'Daniel J. Berger'
7
7
  spec.license = 'Artistic 2.0'
8
8
  spec.email = 'djberg96@gmail.com'
@@ -20,6 +20,15 @@ Gem::Specification.new do |spec|
20
20
  spec.add_development_dependency('test-unit')
21
21
  spec.add_development_dependency('rake')
22
22
 
23
+ spec.metadata = {
24
+ 'homepage_uri' => 'https://github.com/djberg96/html-table',
25
+ 'bug_tracker_uri' => 'https://github.com/djberg96/html-table/issues',
26
+ 'changelog_uri' => 'https://github.com/djberg96/html-table/blob/master/CHANGES',
27
+ 'documentation_uri' => 'https://github.com/djberg96/html-table/wiki',
28
+ 'source_code_uri' => 'https://github.com/djberg96/html-table',
29
+ 'wiki_uri' => 'https://github.com/djberg96/html-table/wiki'
30
+ }
31
+
23
32
  spec.description = <<-EOF
24
33
  The html-table library provides an interface for generating HTML tables
25
34
  in a syntax comfortable to Ruby programmers, but with some enforcement
@@ -20,7 +20,7 @@ module HTML
20
20
  include HtmlHandler
21
21
 
22
22
  # The version of the html-table library
23
- VERSION = '1.5.1'.freeze
23
+ VERSION = '1.5.2'.freeze
24
24
 
25
25
  # The indentation level for the <table> and </table> tags
26
26
  @indent_level = 0
@@ -16,7 +16,7 @@ class TC_HTML_Table < Test::Unit::TestCase
16
16
  end
17
17
 
18
18
  def test_version
19
- assert_equal('1.5.1', Table::VERSION)
19
+ assert_equal('1.5.2', Table::VERSION)
20
20
  assert_true(Table::VERSION.frozen?)
21
21
  end
22
22
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html-table
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -35,7 +35,7 @@ cert_chain:
35
35
  ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
36
36
  WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
37
37
  -----END CERTIFICATE-----
38
- date: 2018-03-31 00:00:00.000000000 Z
38
+ date: 2018-11-04 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: strongtyping
@@ -103,84 +103,90 @@ extensions: []
103
103
  extra_rdoc_files:
104
104
  - README
105
105
  - CHANGES
106
+ - doc/table_colgroup_col.rdoc
107
+ - doc/table_colgroup.rdoc
108
+ - doc/table_row.rdoc
109
+ - doc/table_head.rdoc
106
110
  - doc/attributes.rdoc
107
- - doc/table.rdoc
111
+ - doc/table_row_data.rdoc
108
112
  - doc/table_body.rdoc
109
113
  - doc/table_caption.rdoc
110
- - doc/table_colgroup.rdoc
111
- - doc/table_colgroup_col.rdoc
112
- - doc/table_content.rdoc
113
114
  - doc/table_foot.rdoc
114
- - doc/table_head.rdoc
115
- - doc/table_row.rdoc
116
- - doc/table_row_data.rdoc
115
+ - doc/table.rdoc
117
116
  - doc/table_row_header.rdoc
117
+ - doc/table_content.rdoc
118
118
  files:
119
+ - html-table.gemspec
120
+ - test
121
+ - test/test_col.rb
122
+ - test/test_colgroup.rb
123
+ - test/test_data.rb
124
+ - test/test_caption.rb
125
+ - test/test_header.rb
126
+ - test/test_head.rb
127
+ - test/test_row.rb
128
+ - test/test_attribute_handler.rb
129
+ - test/test_table.rb
130
+ - test/test_foot.rb
131
+ - test/test_html_handler.rb
132
+ - test/test_tablesection.rb
133
+ - test/test_tag_handler.rb
134
+ - test/test_body.rb
135
+ - CHANGES
136
+ - MANIFEST
137
+ - README
138
+ - Rakefile
119
139
  - certs
120
140
  - certs/djberg96_pub.pem
121
- - CHANGES
122
- - doc
123
- - doc/attributes.rdoc
124
- - doc/table.rdoc
125
- - doc/table_body.rdoc
126
- - doc/table_caption.rdoc
127
- - doc/table_colgroup.rdoc
128
- - doc/table_colgroup_col.rdoc
129
- - doc/table_content.rdoc
130
- - doc/table_foot.rdoc
131
- - doc/table_head.rdoc
132
- - doc/table_row.rdoc
133
- - doc/table_row_data.rdoc
134
- - doc/table_row_header.rdoc
135
141
  - examples
136
- - examples/advanced.rb
142
+ - examples/simple3.rb
137
143
  - examples/intermediate1.rb
138
- - examples/intermediate2.rb
144
+ - examples/simple2.rb
139
145
  - examples/intermediate3.rb
140
146
  - examples/simple1.rb
141
- - examples/simple2.rb
142
- - examples/simple3.rb
143
- - html-table.gemspec
147
+ - examples/intermediate2.rb
148
+ - examples/advanced.rb
144
149
  - lib
145
150
  - lib/html
151
+ - lib/html/tablesection.rb
146
152
  - lib/html/attribute_handler.rb
147
- - lib/html/body.rb
148
- - lib/html/caption.rb
153
+ - lib/html/data.rb
154
+ - lib/html/table.rb
155
+ - lib/html/row.rb
149
156
  - lib/html/col.rb
157
+ - lib/html/head.rb
150
158
  - lib/html/colgroup.rb
159
+ - lib/html/caption.rb
160
+ - lib/html/html_handler.rb
151
161
  - lib/html/content.rb
152
- - lib/html/data.rb
153
162
  - lib/html/foot.rb
154
- - lib/html/head.rb
155
- - lib/html/header.rb
156
- - lib/html/html_handler.rb
157
- - lib/html/row.rb
158
- - lib/html/table.rb
159
- - lib/html/tablesection.rb
160
163
  - lib/html/tag_handler.rb
164
+ - lib/html/body.rb
165
+ - lib/html/header.rb
161
166
  - lib/html-table.rb
162
- - MANIFEST
163
- - Rakefile
164
- - README
165
- - test
166
- - test/test_attribute_handler.rb
167
- - test/test_body.rb
168
- - test/test_caption.rb
169
- - test/test_col.rb
170
- - test/test_colgroup.rb
171
- - test/test_data.rb
172
- - test/test_foot.rb
173
- - test/test_head.rb
174
- - test/test_header.rb
175
- - test/test_html_handler.rb
176
- - test/test_row.rb
177
- - test/test_table.rb
178
- - test/test_tablesection.rb
179
- - test/test_tag_handler.rb
167
+ - doc
168
+ - doc/table_colgroup_col.rdoc
169
+ - doc/table_colgroup.rdoc
170
+ - doc/table_row.rdoc
171
+ - doc/table_head.rdoc
172
+ - doc/attributes.rdoc
173
+ - doc/table_row_data.rdoc
174
+ - doc/table_body.rdoc
175
+ - doc/table_caption.rdoc
176
+ - doc/table_foot.rdoc
177
+ - doc/table.rdoc
178
+ - doc/table_row_header.rdoc
179
+ - doc/table_content.rdoc
180
180
  homepage: http://github.com/djberg96/html-table
181
181
  licenses:
182
182
  - Artistic 2.0
183
- metadata: {}
183
+ metadata:
184
+ homepage_uri: https://github.com/djberg96/html-table
185
+ bug_tracker_uri: https://github.com/djberg96/html-table/issues
186
+ changelog_uri: https://github.com/djberg96/html-table/blob/master/CHANGES
187
+ documentation_uri: https://github.com/djberg96/html-table/wiki
188
+ source_code_uri: https://github.com/djberg96/html-table
189
+ wiki_uri: https://github.com/djberg96/html-table/wiki
184
190
  post_install_message:
185
191
  rdoc_options: []
186
192
  require_paths:
@@ -202,17 +208,17 @@ signing_key:
202
208
  specification_version: 4
203
209
  summary: A Ruby interface for generating HTML tables
204
210
  test_files:
205
- - test/test_attribute_handler.rb
206
- - test/test_body.rb
207
- - test/test_caption.rb
208
211
  - test/test_col.rb
209
212
  - test/test_colgroup.rb
210
213
  - test/test_data.rb
211
- - test/test_foot.rb
212
- - test/test_head.rb
214
+ - test/test_caption.rb
213
215
  - test/test_header.rb
214
- - test/test_html_handler.rb
216
+ - test/test_head.rb
215
217
  - test/test_row.rb
218
+ - test/test_attribute_handler.rb
216
219
  - test/test_table.rb
220
+ - test/test_foot.rb
221
+ - test/test_html_handler.rb
217
222
  - test/test_tablesection.rb
218
223
  - test/test_tag_handler.rb
224
+ - test/test_body.rb
metadata.gz.sig CHANGED
Binary file