html-table 1.3.1 → 1.3.2

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.
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.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -9,11 +9,12 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-02-12 00:00:00 -07:00
12
+ date: 2008-07-15 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: strongtyping
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
@@ -43,13 +44,13 @@ extra_rdoc_files:
43
44
  - doc/table_row_data.rdoc
44
45
  - doc/table_row_header.rdoc
45
46
  files:
46
- - lib/html/CVS
47
47
  - lib/html/attribute_handler.rb
48
48
  - lib/html/body.rb
49
49
  - lib/html/caption.rb
50
50
  - lib/html/col.rb
51
51
  - lib/html/colgroup.rb
52
52
  - lib/html/content.rb
53
+ - lib/html/CVS
53
54
  - lib/html/data.rb
54
55
  - lib/html/foot.rb
55
56
  - lib/html/head.rb
@@ -59,11 +60,17 @@ files:
59
60
  - lib/html/table.rb
60
61
  - lib/html/tablesection.rb
61
62
  - lib/html/tag_handler.rb
62
- - CVS
63
63
  - CHANGES
64
+ - CVS
65
+ - doc
66
+ - examples
67
+ - html-table-1.3.2.gem
68
+ - html-table.gemspec
69
+ - lib
64
70
  - MANIFEST
65
- - README
66
71
  - Rakefile
72
+ - README
73
+ - test
67
74
  - test/CVS
68
75
  - test/tc_attribute_handler.rb
69
76
  - test/tc_body.rb
@@ -79,9 +86,8 @@ files:
79
86
  - test/tc_table.rb
80
87
  - test/tc_tablesection.rb
81
88
  - test/tc_tag_handler.rb
82
- - test/ts_all.rb
83
- - doc/CVS
84
89
  - doc/attributes.rdoc
90
+ - doc/CVS
85
91
  - doc/table.rdoc
86
92
  - doc/table_body.rdoc
87
93
  - doc/table_caption.rdoc
@@ -114,10 +120,23 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
120
  version:
115
121
  requirements: []
116
122
 
117
- rubyforge_project: http://www.rubyforge.org/projects/shards
118
- rubygems_version: 1.0.1
123
+ rubyforge_project: shards
124
+ rubygems_version: 1.2.0
119
125
  signing_key:
120
126
  specification_version: 2
121
127
  summary: A Ruby interface for generating HTML tables
122
128
  test_files:
123
- - test/ts_all.rb
129
+ - test/tc_attribute_handler.rb
130
+ - test/tc_body.rb
131
+ - test/tc_caption.rb
132
+ - test/tc_col.rb
133
+ - test/tc_colgroup.rb
134
+ - test/tc_data.rb
135
+ - test/tc_foot.rb
136
+ - test/tc_head.rb
137
+ - test/tc_header.rb
138
+ - test/tc_html_handler.rb
139
+ - test/tc_row.rb
140
+ - test/tc_table.rb
141
+ - test/tc_tablesection.rb
142
+ - test/tc_tag_handler.rb
data/test/ts_all.rb DELETED
@@ -1,24 +0,0 @@
1
- base = File.basename(Dir.pwd)
2
-
3
- if base == 'test' || base =~ /html-table/
4
- Dir.chdir('..') if base == 'test'
5
- $LOAD_PATH.unshift(Dir.pwd)
6
- $LOAD_PATH.unshift(Dir.pwd + '/lib')
7
- $LOAD_PATH.unshift(Dir.pwd + '/lib/html')
8
- Dir.chdir('test') rescue nil
9
- end
10
-
11
- require 'tc_table'
12
- require 'tc_row'
13
- require 'tc_colgroup'
14
- require 'tc_caption'
15
- require 'tc_data'
16
- require 'tc_header'
17
- require 'tc_col'
18
- require 'tc_head'
19
- require 'tc_foot'
20
- require 'tc_body'
21
- require 'tc_tablesection'
22
- require 'tc_attribute_handler'
23
- require 'tc_html_handler'
24
- require 'tc_tag_handler'