terminal-table 1.5.2 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.rdoc +53 -48
- data/README.rdoc +238 -240
- data/Todo.rdoc +13 -13
- data/examples/examples.rb +83 -83
- data/lib/terminal-table/cell.rb +16 -17
- data/lib/terminal-table/separator.rb +14 -14
- data/lib/terminal-table/style.rb +67 -62
- data/lib/terminal-table/table.rb +43 -40
- data/lib/terminal-table/table_helper.rb +9 -9
- data/lib/terminal-table/version.rb +1 -1
- metadata +4 -4
- data/.rvmrc +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 906edc10ddbc49ce496a4bb49d2b0318ce67ce87
|
4
|
+
data.tar.gz: e28e319ee32ef1be3a81ccd3e324970d7778a20d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37a853ebbf1ccad933892ed34372ca2126d3f302f4c81e9da4dd3e53937613af6e0f820e62c2675a3da50e3542b185d7bd523d15312f37535ca29c95dba14c13
|
7
|
+
data.tar.gz: 8ef39f7169f4682ed4c94739ef2cda11eb1be487b4991e1c4fa3b70ebb7a30bc728d29eaa991d4849c873f58df04b86e3f4ce7bd5c76647893f439550d71b548
|
data/History.rdoc
CHANGED
@@ -1,48 +1,53 @@
|
|
1
|
-
1.
|
2
|
-
==================
|
3
|
-
|
4
|
-
*
|
5
|
-
|
6
|
-
1.4.
|
7
|
-
==================
|
8
|
-
|
9
|
-
*
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
* Fix
|
19
|
-
|
20
|
-
=== 1.
|
21
|
-
|
22
|
-
*
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
*
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
*
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
1
|
+
1.6.0 / 2016-06-06
|
2
|
+
==================
|
3
|
+
|
4
|
+
* Added table styles - margin_left, all_separators.
|
5
|
+
|
6
|
+
1.4.3 / 2011-10-13
|
7
|
+
==================
|
8
|
+
|
9
|
+
* Optimize for faster table output.
|
10
|
+
|
11
|
+
1.4.2 / 2010-01-14
|
12
|
+
==================
|
13
|
+
|
14
|
+
* Fixed some bugs with colspan
|
15
|
+
|
16
|
+
=== 1.4.1 / 2009-12-18
|
17
|
+
|
18
|
+
* Fix column alignment with separators.
|
19
|
+
|
20
|
+
=== 1.4.0 / 2009-12-18
|
21
|
+
|
22
|
+
* Can now add :seperator arbitrarily in a table [thanks splattael]
|
23
|
+
* Fix common typo: seperator -> separator [thanks splattael]
|
24
|
+
|
25
|
+
=== 1.3.0 / 2009-10-16
|
26
|
+
|
27
|
+
* Major refactoring (functionality remains the same)
|
28
|
+
|
29
|
+
=== 1.2.0 / 2009-08-06
|
30
|
+
|
31
|
+
* Added colspan support to table
|
32
|
+
|
33
|
+
=== 1.1.0 / 2009-08-06
|
34
|
+
|
35
|
+
* Added colspan support to table
|
36
|
+
|
37
|
+
=== 1.1.0 / 2009-07-13
|
38
|
+
|
39
|
+
* Added Table#==
|
40
|
+
|
41
|
+
=== 1.0.5 / 2009-03-14
|
42
|
+
|
43
|
+
* Allowing nil to be passed to table for headings
|
44
|
+
* Revised doc to show that rows can be splatted now
|
45
|
+
* Misc refactoring
|
46
|
+
|
47
|
+
=== 1.0.3 / 2009-01-15
|
48
|
+
|
49
|
+
* Moved yield or eval to Terminal::Table initialize where it belongs
|
50
|
+
|
51
|
+
=== 1.0.0 / 2009-01-13
|
52
|
+
|
53
|
+
* Initial release
|
data/README.rdoc
CHANGED
@@ -1,240 +1,238 @@
|
|
1
|
-
= Terminal Table
|
2
|
-
|
3
|
-
== Description
|
4
|
-
|
5
|
-
Terminal Table is a fast and simple, yet feature rich ASCII table generator written in Ruby.
|
6
|
-
|
7
|
-
== Installation
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
rows
|
24
|
-
rows << ['
|
25
|
-
rows
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
#
|
30
|
-
#
|
31
|
-
#
|
32
|
-
# |
|
33
|
-
#
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
t
|
59
|
-
t
|
60
|
-
t.add_row ['
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
#
|
66
|
-
#
|
67
|
-
# +-------+---+
|
68
|
-
# |
|
69
|
-
# +-------+---+
|
70
|
-
# |
|
71
|
-
# +-------+---+
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
t
|
79
|
-
t
|
80
|
-
t.add_row [
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
#
|
86
|
-
#
|
87
|
-
# +--------+---+
|
88
|
-
# |
|
89
|
-
#
|
90
|
-
#
|
91
|
-
# |
|
92
|
-
# +--------+---+
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
#
|
103
|
-
#
|
104
|
-
# +-------+--------+
|
105
|
-
# |
|
106
|
-
#
|
107
|
-
# |
|
108
|
-
#
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
#
|
119
|
-
#
|
120
|
-
# +------------+--------+
|
121
|
-
# |
|
122
|
-
# +------------+--------+
|
123
|
-
# |
|
124
|
-
#
|
125
|
-
# |
|
126
|
-
#
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
table
|
135
|
-
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# +-------+--------+
|
139
|
-
# |
|
140
|
-
#
|
141
|
-
# |
|
142
|
-
#
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
#
|
151
|
-
#
|
152
|
-
# +-------+--------+
|
153
|
-
# |
|
154
|
-
#
|
155
|
-
# |
|
156
|
-
# |
|
157
|
-
#
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
#
|
168
|
-
#
|
169
|
-
# +--------------------------------------+---------------------------------------+
|
170
|
-
# |
|
171
|
-
#
|
172
|
-
# |
|
173
|
-
#
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
#
|
182
|
-
#
|
183
|
-
# x====================x=================x
|
184
|
-
# |
|
185
|
-
# x====================x=================x
|
186
|
-
# |
|
187
|
-
#
|
188
|
-
# |
|
189
|
-
#
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
table =
|
204
|
-
table.
|
205
|
-
table.
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
(
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
240
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
|
+
= Terminal Table
|
2
|
+
|
3
|
+
== Description
|
4
|
+
|
5
|
+
Terminal Table is a fast and simple, yet feature rich ASCII table generator written in Ruby.
|
6
|
+
|
7
|
+
== Installation
|
8
|
+
|
9
|
+
$ gem install terminal-table
|
10
|
+
|
11
|
+
== Usage
|
12
|
+
|
13
|
+
=== Basics
|
14
|
+
|
15
|
+
To use Terminal Table:
|
16
|
+
|
17
|
+
require 'terminal-table'
|
18
|
+
|
19
|
+
To generate a table, provide an array of arrays (which are interpreted as rows):
|
20
|
+
|
21
|
+
rows = []
|
22
|
+
rows << ['One', 1]
|
23
|
+
rows << ['Two', 2]
|
24
|
+
rows << ['Three', 3]
|
25
|
+
table = Terminal::Table.new :rows => rows
|
26
|
+
|
27
|
+
# > puts table
|
28
|
+
#
|
29
|
+
# +-------+---+
|
30
|
+
# | One | 1 |
|
31
|
+
# | Two | 2 |
|
32
|
+
# | Three | 3 |
|
33
|
+
# +-------+---+
|
34
|
+
|
35
|
+
|
36
|
+
The constructor can also be given a block which is either yielded the Table object or instance evaluated:
|
37
|
+
|
38
|
+
table = Terminal::Table.new do |t|
|
39
|
+
t.rows = rows
|
40
|
+
end
|
41
|
+
|
42
|
+
table = Terminal::Table.new do
|
43
|
+
self.rows = rows
|
44
|
+
end
|
45
|
+
|
46
|
+
Adding rows one by one:
|
47
|
+
|
48
|
+
table = Terminal::Table.new do |t|
|
49
|
+
t << ['One', 1]
|
50
|
+
t.add_row ['Two', 2]
|
51
|
+
end
|
52
|
+
|
53
|
+
To add separators between rows:
|
54
|
+
|
55
|
+
table = Terminal::Table.new do |t|
|
56
|
+
t << ['One', 1]
|
57
|
+
t << :separator
|
58
|
+
t.add_row ['Two', 2]
|
59
|
+
t.add_separator
|
60
|
+
t.add_row ['Three', 3]
|
61
|
+
end
|
62
|
+
|
63
|
+
# > puts table
|
64
|
+
#
|
65
|
+
# +-------+---+
|
66
|
+
# | One | 1 |
|
67
|
+
# +-------+---+
|
68
|
+
# | Two | 2 |
|
69
|
+
# +-------+---+
|
70
|
+
# | Three | 3 |
|
71
|
+
# +-------+---+
|
72
|
+
|
73
|
+
Cells can handle multiline content:
|
74
|
+
|
75
|
+
table = Terminal::Table.new do |t|
|
76
|
+
t << ['One', 1]
|
77
|
+
t << :separator
|
78
|
+
t.add_row ["Two\nDouble", 2]
|
79
|
+
t.add_separator
|
80
|
+
t.add_row ['Three', 3]
|
81
|
+
end
|
82
|
+
|
83
|
+
# > puts table
|
84
|
+
#
|
85
|
+
# +--------+---+
|
86
|
+
# | One | 1 |
|
87
|
+
# +--------+---+
|
88
|
+
# | Two | 2 |
|
89
|
+
# | Double | |
|
90
|
+
# +--------+---+
|
91
|
+
# | Three | 3 |
|
92
|
+
# +--------+---+
|
93
|
+
|
94
|
+
=== Head
|
95
|
+
|
96
|
+
To add a head to the table:
|
97
|
+
|
98
|
+
table = Terminal::Table.new :headings => ['Word', 'Number'], :rows => rows
|
99
|
+
|
100
|
+
# > puts table
|
101
|
+
#
|
102
|
+
# +-------+--------+
|
103
|
+
# | Word | Number |
|
104
|
+
# +-------+--------+
|
105
|
+
# | One | 1 |
|
106
|
+
# | Two | 2 |
|
107
|
+
# | Three | 3 |
|
108
|
+
# +-------+--------+
|
109
|
+
|
110
|
+
=== Title
|
111
|
+
|
112
|
+
To add a title to the table:
|
113
|
+
|
114
|
+
table = Terminal::Table.new :title => "Cheatsheet", :headings => ['Word', 'Number'], :rows => rows
|
115
|
+
|
116
|
+
# > puts table
|
117
|
+
#
|
118
|
+
# +------------+--------+
|
119
|
+
# | Cheatsheet |
|
120
|
+
# +------------+--------+
|
121
|
+
# | Word | Number |
|
122
|
+
# +------------+--------+
|
123
|
+
# | One | 1 |
|
124
|
+
# | Two | 2 |
|
125
|
+
# | Three | 3 |
|
126
|
+
# +------------+--------+
|
127
|
+
|
128
|
+
=== Alignment
|
129
|
+
|
130
|
+
To align the second column to the right:
|
131
|
+
|
132
|
+
table.align_column(1, :right)
|
133
|
+
|
134
|
+
# > puts table
|
135
|
+
#
|
136
|
+
# +-------+--------+
|
137
|
+
# | Word | Number |
|
138
|
+
# +-------+--------+
|
139
|
+
# | One | 1 |
|
140
|
+
# | Two | 2 |
|
141
|
+
# | Three | 3 |
|
142
|
+
# +-------+--------+
|
143
|
+
|
144
|
+
To align an individual cell, you specify the cell value in a hash along the alignment:
|
145
|
+
|
146
|
+
table << ["Four", {:value => 4.0, :alignment => :center}]
|
147
|
+
|
148
|
+
# > puts table
|
149
|
+
#
|
150
|
+
# +-------+--------+
|
151
|
+
# | Word | Number |
|
152
|
+
# +-------+--------+
|
153
|
+
# | One | 1 |
|
154
|
+
# | Two | 2 |
|
155
|
+
# | Three | 3 |
|
156
|
+
# | Four | 4.0 |
|
157
|
+
# +-------+--------+
|
158
|
+
|
159
|
+
=== Style
|
160
|
+
|
161
|
+
To specify style options:
|
162
|
+
|
163
|
+
table = Terminal::Table.new :headings => ['Word', 'Number'], :rows => rows, :style => {:width => 80}
|
164
|
+
|
165
|
+
# > puts table
|
166
|
+
#
|
167
|
+
# +--------------------------------------+---------------------------------------+
|
168
|
+
# | Word | Number |
|
169
|
+
# +--------------------------------------+---------------------------------------+
|
170
|
+
# | One | 1 |
|
171
|
+
# | Two | 2 |
|
172
|
+
# | Three | 3 |
|
173
|
+
# +--------------------------------------+---------------------------------------+
|
174
|
+
|
175
|
+
And change styles on the fly:
|
176
|
+
|
177
|
+
table.style = {:width => 40, :padding_left => 3, :border_x => "=", :border_i => "x"}
|
178
|
+
|
179
|
+
# > puts table
|
180
|
+
#
|
181
|
+
# x====================x=================x
|
182
|
+
# | Cheatsheet |
|
183
|
+
# x====================x=================x
|
184
|
+
# | Word | Number |
|
185
|
+
# x====================x=================x
|
186
|
+
# | One | 1 |
|
187
|
+
# | Two | 2 |
|
188
|
+
# | Three | 3 |
|
189
|
+
# x====================x=================x
|
190
|
+
|
191
|
+
To change the default style options:
|
192
|
+
|
193
|
+
Terminal::Style.defaults = {:width => 80}
|
194
|
+
|
195
|
+
All Table objects created afterwards will inherit these defaults.
|
196
|
+
|
197
|
+
=== Constructor options and setter methods
|
198
|
+
|
199
|
+
Valid options for the constructor are :rows, :headings, :style and :title - and all options can also be set on the created table object by their setter method:
|
200
|
+
|
201
|
+
table = Terminal::Table.new
|
202
|
+
table.title = "Cheatsheet"
|
203
|
+
table.headings = ['Word', 'Number']
|
204
|
+
table.rows = rows
|
205
|
+
table.style = {:width => 40}
|
206
|
+
|
207
|
+
== More examples
|
208
|
+
|
209
|
+
For more examples, please see the examples/examples.rb file included in the source distribution.
|
210
|
+
|
211
|
+
== Author
|
212
|
+
|
213
|
+
TJ Holowaychuk <tj@vision-media.ca>
|
214
|
+
|
215
|
+
== License
|
216
|
+
|
217
|
+
(The MIT License)
|
218
|
+
|
219
|
+
Copyright (c) 2008-2009 TJ Holowaychuk <tj@vision-media.ca>
|
220
|
+
|
221
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
222
|
+
a copy of this software and associated documentation files (the
|
223
|
+
'Software'), to deal in the Software without restriction, including
|
224
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
225
|
+
distribute, sublicense, an d/or sell copies of the Software, and to
|
226
|
+
permit persons to whom the Software is furnished to do so, subject to
|
227
|
+
the following conditions:
|
228
|
+
|
229
|
+
The above copyright notice and this permission notice shall be
|
230
|
+
included in all copies or substantial portions of the Software.
|
231
|
+
|
232
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
233
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
234
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
235
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
236
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
237
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
238
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|