table_format 0.0.15 → 0.0.17
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/Gemfile +2 -2
- data/README.org +10 -10
- data/examples/0100_basic.rb +8 -8
- data/examples/0110_active_record.rb +8 -8
- data/examples/0120_default_options.rb +4 -4
- data/examples/0130_mongoid.rb +6 -6
- data/examples/0140_markdown_format.rb +7 -7
- data/examples/0150_line_break.rb +2 -2
- data/examples/0160_truncate.rb +2 -2
- data/examples/0170_emoji.rb +2 -2
- data/examples/0180_object_spec.rb +3 -3
- data/examples/0190_table_print.rb +2 -2
- data/examples/0200_hankaku_katakana.rb +2 -2
- data/lib/table_format/core_ext.rb +1 -1
- data/lib/table_format/generator.rb +25 -32
- data/lib/table_format/railtie.rb +1 -1
- data/lib/table_format/version.rb +1 -1
- data/lib/table_format.rb +12 -11
- data/spec/active_record_spec.rb +4 -4
- data/spec/core_ext_spec.rb +6 -6
- data/spec/object_spec.rb +5 -5
- data/spec/spec_helper.rb +2 -2
- data/spec/table_format_spec.rb +29 -27
- data/table_format.gemspec +18 -16
- metadata +31 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2752df2f0db0f5d84573bbd952c30da482384ef3395fbfb2f08ef1010b967c9
|
4
|
+
data.tar.gz: 20bc0d54d2be430b9dafe22e3039c7daf7bd7b728e3f08f4e2462994fae4e310
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92d56845f4dba68f76c81489e8d28227ffcd07b305b9bb2be8ef6d38ef7a125777a0cf8184079d76d7689577fdb348531f5955a692c974108b4f153102f0e129
|
7
|
+
data.tar.gz: 03a01a0ff5655cebf11bcd8e36e11711d14bd778c4060a84646fb10cbfb67107e0bad3efe84d9794131275207748f6ac9b413c418cc526f39e37804c7ecefa73
|
data/Gemfile
CHANGED
data/README.org
CHANGED
@@ -67,7 +67,7 @@ $ bundle install
|
|
67
67
|
*** Array of hash
|
68
68
|
|
69
69
|
#+BEGIN_SRC ruby
|
70
|
-
tp [{id: 1, name:
|
70
|
+
tp [{id: 1, name: "alice"}, {id: 2, name: "bob"}]
|
71
71
|
# >> |----+-------|
|
72
72
|
# >> | id | name |
|
73
73
|
# >> |----+-------|
|
@@ -79,7 +79,7 @@ tp [{id: 1, name: 'alice'}, {id: 2, name: 'bob'}]
|
|
79
79
|
*** Hash
|
80
80
|
|
81
81
|
#+BEGIN_SRC ruby
|
82
|
-
tp({id: 1, name:
|
82
|
+
tp({id: 1, name: "alice"})
|
83
83
|
# >> |------+-------|
|
84
84
|
# >> | id | 1 |
|
85
85
|
# >> | name | alice |
|
@@ -99,7 +99,7 @@ tp [:alice, :bob]
|
|
99
99
|
*** ActiveRecord or Mongoid
|
100
100
|
|
101
101
|
#+BEGIN_SRC ruby
|
102
|
-
[
|
102
|
+
["alice", "bob"].each { |e| User.create!(name: e) }
|
103
103
|
#+END_SRC
|
104
104
|
|
105
105
|
#+BEGIN_SRC ruby
|
@@ -132,7 +132,7 @@ tp User.first
|
|
132
132
|
**** ActiveRecord::Result
|
133
133
|
|
134
134
|
#+BEGIN_SRC ruby
|
135
|
-
tp ActiveRecord::Base.connection.select_all(
|
135
|
+
tp ActiveRecord::Base.connection.select_all("SELECT * FROM users")
|
136
136
|
# >> |----+-------|
|
137
137
|
# >> | id | name |
|
138
138
|
# >> |----+-------|
|
@@ -146,7 +146,7 @@ tp ActiveRecord::Base.connection.select_all('SELECT * FROM users')
|
|
146
146
|
Use to_t method.
|
147
147
|
|
148
148
|
#+BEGIN_SRC ruby
|
149
|
-
puts [{id: 1, name:
|
149
|
+
puts [{id: 1, name: "alice"}, {id: 2, name: "bob"}].to_t
|
150
150
|
# >> |----+-------|
|
151
151
|
# >> | id | name |
|
152
152
|
# >> |----+-------|
|
@@ -165,7 +165,7 @@ tp 1
|
|
165
165
|
# >> | 1 |
|
166
166
|
# >> |---|
|
167
167
|
|
168
|
-
tp 1, intersection_both:
|
168
|
+
tp 1, intersection_both: "+"
|
169
169
|
# >> +---+
|
170
170
|
# >> | 1 |
|
171
171
|
# >> +---+
|
@@ -173,10 +173,10 @@ tp 1, intersection_both: '+'
|
|
173
173
|
|
174
174
|
*** Markdown format example
|
175
175
|
|
176
|
-
=markdown: true= has the same meaning as =intersection:
|
176
|
+
=markdown: true= has the same meaning as =intersection: "|", cover: false=
|
177
177
|
|
178
178
|
#+BEGIN_SRC ruby
|
179
|
-
tp [{id: 1, name:
|
179
|
+
tp [{id: 1, name: "alice"}, {id: 2, name: "bob"}], markdown: true
|
180
180
|
# >> | id | name |
|
181
181
|
# >> |----|-------|
|
182
182
|
# >> | 1 | alice |
|
@@ -184,7 +184,7 @@ tp [{id: 1, name: 'alice'}, {id: 2, name: 'bob'}], markdown: true
|
|
184
184
|
#+END_SRC
|
185
185
|
|
186
186
|
#+BEGIN_SRC ruby
|
187
|
-
tp [{id: 1, name:
|
187
|
+
tp [{id: 1, name: "alice"}, {id: 2, name: "bob"}], intersection: "|", cover: false
|
188
188
|
# >> | id | name |
|
189
189
|
# >> |----|-------|
|
190
190
|
# >> | 1 | alice |
|
@@ -212,7 +212,7 @@ tp 1
|
|
212
212
|
# >> | 1 |
|
213
213
|
# >> |---|
|
214
214
|
|
215
|
-
TableFormat.default_options[:intersection_both] =
|
215
|
+
TableFormat.default_options[:intersection_both] = "+"
|
216
216
|
|
217
217
|
tp 1
|
218
218
|
# >> +---+
|
data/examples/0100_basic.rb
CHANGED
@@ -1,15 +1,15 @@
|
|
1
|
-
$LOAD_PATH <<
|
2
|
-
require
|
1
|
+
$LOAD_PATH << "../lib"
|
2
|
+
require "table_format"
|
3
3
|
|
4
4
|
tp :ok
|
5
|
-
tp
|
5
|
+
tp "foo"
|
6
6
|
tp :foo
|
7
7
|
tp [:alice, :bob]
|
8
|
-
tp({id: 1, name:
|
9
|
-
tp [{id: 1, name:
|
10
|
-
puts [{id: 1, name:
|
11
|
-
puts [{
|
12
|
-
puts [{
|
8
|
+
tp({id: 1, name: "alice"})
|
9
|
+
tp [{id: 1, name: "alice"}, {id: 2, name: "bob"}]
|
10
|
+
puts [{id: 1, name: "alice"}, {id: 2, name: "bob"}].to_t
|
11
|
+
puts [{"a": ["a"]}].to_t
|
12
|
+
puts [{"a": {"a": 1}}].to_t
|
13
13
|
# >> |----|
|
14
14
|
# >> | ok |
|
15
15
|
# >> |----|
|
@@ -1,10 +1,10 @@
|
|
1
|
-
$LOAD_PATH <<
|
2
|
-
require
|
3
|
-
require
|
1
|
+
$LOAD_PATH << "../lib"
|
2
|
+
require "active_record"
|
3
|
+
require "table_format"
|
4
4
|
|
5
5
|
# tp ::ActiveRecord::Result.ancestors
|
6
6
|
|
7
|
-
ActiveRecord::Base.establish_connection(adapter:
|
7
|
+
ActiveRecord::Base.establish_connection(adapter: "sqlite3", database: ":memory:")
|
8
8
|
ActiveRecord::Migration.verbose = false
|
9
9
|
ActiveRecord::Schema.define do
|
10
10
|
create_table :users do |t|
|
@@ -15,7 +15,7 @@ end
|
|
15
15
|
class User < ActiveRecord::Base
|
16
16
|
end
|
17
17
|
|
18
|
-
[
|
18
|
+
["alice", "bob", "carol"].each { |e| User.create!(name: e) }
|
19
19
|
|
20
20
|
tp User.limit(2)
|
21
21
|
|
@@ -26,9 +26,9 @@ p User.limit(1).class.name # => "ActiveRecord::Relation"
|
|
26
26
|
tp User.limit(1)
|
27
27
|
puts table_format(User.limit(1))
|
28
28
|
|
29
|
-
tp ActiveRecord::Base.connection.select_all(
|
30
|
-
tp ActiveRecord::Base.connection.select_one(
|
31
|
-
tp ActiveRecord::Base.connection.select_value(
|
29
|
+
tp ActiveRecord::Base.connection.select_all("SELECT * FROM users")
|
30
|
+
tp ActiveRecord::Base.connection.select_one("SELECT * FROM users")
|
31
|
+
tp ActiveRecord::Base.connection.select_value("SELECT 1 + 2")
|
32
32
|
|
33
33
|
puts User.first.to_t
|
34
34
|
|
@@ -1,10 +1,10 @@
|
|
1
|
-
$LOAD_PATH <<
|
2
|
-
require
|
1
|
+
$LOAD_PATH << "../lib"
|
2
|
+
require "table_format"
|
3
3
|
|
4
|
-
tp 1, intersection_both:
|
4
|
+
tp 1, intersection_both: "+"
|
5
5
|
|
6
6
|
tp TableFormat.default_options
|
7
|
-
TableFormat.default_options.update(intersection_both:
|
7
|
+
TableFormat.default_options.update(intersection_both: "+")
|
8
8
|
tp TableFormat.default_options
|
9
9
|
|
10
10
|
# >> +---+
|
data/examples/0130_mongoid.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
$LOAD_PATH <<
|
2
|
-
require
|
3
|
-
require
|
4
|
-
require
|
1
|
+
$LOAD_PATH << "../lib"
|
2
|
+
require "active_record"
|
3
|
+
require "mongoid"
|
4
|
+
require "table_format"
|
5
5
|
|
6
6
|
Mongo::Logger.logger.level = Logger::INFO
|
7
|
-
Mongoid::Config.connect_to(
|
7
|
+
Mongoid::Config.connect_to("test")
|
8
8
|
Mongoid::Clients.default.database.drop
|
9
9
|
|
10
10
|
class User
|
@@ -12,7 +12,7 @@ class User
|
|
12
12
|
field :name, type: String
|
13
13
|
end
|
14
14
|
|
15
|
-
[
|
15
|
+
["alice", "bob", "carol"].each { |e| User.create!(name: e) }
|
16
16
|
|
17
17
|
tp User
|
18
18
|
tp User.first
|
@@ -1,21 +1,21 @@
|
|
1
|
-
$LOAD_PATH <<
|
2
|
-
require
|
1
|
+
$LOAD_PATH << "../lib"
|
2
|
+
require "table_format"
|
3
3
|
|
4
4
|
array = [
|
5
|
-
{id: 1, name:
|
6
|
-
{id: 2, name:
|
5
|
+
{id: 1, name: "alice" },
|
6
|
+
{id: 2, name: "bob" },
|
7
7
|
]
|
8
8
|
|
9
9
|
# tp with options
|
10
|
-
tp array, intersection:
|
10
|
+
tp array, intersection: "|", cover: false
|
11
11
|
|
12
12
|
# to_t with options
|
13
|
-
array.to_t(intersection:
|
13
|
+
array.to_t(intersection: "|", cover: false) # => "| id | name |\n|----|-------|\n| 1 | alice |\n| 2 | bob |\n"
|
14
14
|
|
15
15
|
puts
|
16
16
|
|
17
17
|
# set global options
|
18
|
-
TableFormat.default_options.update(intersection:
|
18
|
+
TableFormat.default_options.update(intersection: "|", cover: false)
|
19
19
|
tp array
|
20
20
|
|
21
21
|
######################################## markdown option
|
data/examples/0150_line_break.rb
CHANGED
data/examples/0160_truncate.rb
CHANGED
data/examples/0170_emoji.rb
CHANGED
@@ -1,29 +1,22 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
|
6
|
-
require 'active_support/isolated_execution_state'
|
7
|
-
rescue LoadError
|
8
|
-
end
|
9
|
-
|
10
|
-
require 'active_support/core_ext/string' # for blank?
|
11
|
-
require 'active_support/core_ext/class/attribute' # for class_attribute
|
12
|
-
require 'kconv'
|
3
|
+
require "active_support/core_ext/object/blank" # for blank?
|
4
|
+
require "active_support/core_ext/module/attribute_accessors" # for class_attribute
|
5
|
+
require "kconv"
|
13
6
|
|
14
7
|
module TableFormat
|
15
8
|
mattr_accessor :default_options do
|
16
9
|
{
|
17
|
-
markdown
|
18
|
-
header
|
19
|
-
cover
|
20
|
-
vertical
|
21
|
-
intersection
|
22
|
-
intersection_both
|
23
|
-
horizon
|
24
|
-
padding
|
25
|
-
truncate
|
26
|
-
in_code
|
10
|
+
:markdown => false, # Same as {intersection: "|", :cover: false}
|
11
|
+
:header => nil,
|
12
|
+
:cover => true,
|
13
|
+
:vertical => "|",
|
14
|
+
:intersection => "+",
|
15
|
+
:intersection_both => "|",
|
16
|
+
:horizon => "-",
|
17
|
+
:padding => " ",
|
18
|
+
:truncate => 256,
|
19
|
+
:in_code => Kconv::UTF8,
|
27
20
|
}
|
28
21
|
end
|
29
22
|
|
@@ -40,7 +33,7 @@ module TableFormat
|
|
40
33
|
@options = TableFormat.default_options.merge(options)
|
41
34
|
|
42
35
|
if @options[:markdown]
|
43
|
-
@options[:intersection] =
|
36
|
+
@options[:intersection] = "|"
|
44
37
|
@options[:cover] = false
|
45
38
|
end
|
46
39
|
|
@@ -50,7 +43,7 @@ module TableFormat
|
|
50
43
|
|
51
44
|
def generate
|
52
45
|
if @rows.blank?
|
53
|
-
return
|
46
|
+
return ""
|
54
47
|
end
|
55
48
|
|
56
49
|
pre_processes.each do |e|
|
@@ -151,9 +144,9 @@ module TableFormat
|
|
151
144
|
align = (@options[:align] || {}).fetch(all_columns[i]) do
|
152
145
|
Float(value) && :right rescue :left
|
153
146
|
end
|
154
|
-
space =
|
155
|
-
lspace =
|
156
|
-
rspace =
|
147
|
+
space = " " * (column_widths[i] - str_width(value))
|
148
|
+
lspace = ""
|
149
|
+
rspace = ""
|
157
150
|
if align == :right
|
158
151
|
lspace = space
|
159
152
|
else
|
@@ -189,10 +182,10 @@ module TableFormat
|
|
189
182
|
header: false,
|
190
183
|
process: -> e {
|
191
184
|
e.collect do |k, v|
|
192
|
-
{
|
185
|
+
{"(key)" => k.to_s, "(value)" => v.to_s}
|
193
186
|
end
|
194
187
|
},
|
195
|
-
align: {
|
188
|
+
align: {"(key)" => :right, "(value)" => :left},
|
196
189
|
},
|
197
190
|
|
198
191
|
# Array of Hash
|
@@ -208,7 +201,7 @@ module TableFormat
|
|
208
201
|
header: false,
|
209
202
|
process: -> e {
|
210
203
|
e.collect do |v|
|
211
|
-
{
|
204
|
+
{"(array_element)" => v}
|
212
205
|
end
|
213
206
|
},
|
214
207
|
},
|
@@ -222,7 +215,7 @@ module TableFormat
|
|
222
215
|
if v.kind_of? Hash
|
223
216
|
v
|
224
217
|
else
|
225
|
-
{
|
218
|
+
{"(array_element)" => v}
|
226
219
|
end
|
227
220
|
end
|
228
221
|
},
|
@@ -234,9 +227,9 @@ end
|
|
234
227
|
|
235
228
|
if $0 == __FILE__
|
236
229
|
rows = [
|
237
|
-
{id: 1, name:
|
238
|
-
{id: 2, name:
|
239
|
-
{id: 3, name:
|
230
|
+
{ id: 1, name: "alice", description: "0123456789" },
|
231
|
+
{ id: 2, name: "bob", description: "あいうえお" },
|
232
|
+
{ id: 3, name: "carol" },
|
240
233
|
]
|
241
234
|
print TableFormat.generate({a: []})
|
242
235
|
print TableFormat.generate([])
|
data/lib/table_format/railtie.rb
CHANGED
data/lib/table_format/version.rb
CHANGED
data/lib/table_format.rb
CHANGED
@@ -1,21 +1,22 @@
|
|
1
|
-
require
|
2
|
-
require
|
3
|
-
require
|
1
|
+
require "table_format/version"
|
2
|
+
require "table_format/generator"
|
3
|
+
require "table_format/core_ext"
|
4
4
|
|
5
5
|
if defined?(Rails)
|
6
|
-
require
|
6
|
+
require "table_format/railtie"
|
7
7
|
else
|
8
8
|
if defined?(ActiveSupport)
|
9
|
-
ActiveSupport.
|
10
|
-
|
11
|
-
|
9
|
+
if ActiveSupport.respond_to?(:on_load)
|
10
|
+
ActiveSupport.on_load(:active_record) do
|
11
|
+
include TableFormat::ActiveRecord
|
12
|
+
::ActiveRecord::Result.include(TableFormat::ActiveRecordResult)
|
12
13
|
|
13
|
-
|
14
|
-
|
15
|
-
|
14
|
+
::ActiveRecord::Relation.class_eval do
|
15
|
+
def to_t(options = {})
|
16
|
+
TableFormat.generate(to_a.collect(&:attributes), options)
|
17
|
+
end
|
16
18
|
end
|
17
19
|
end
|
18
|
-
|
19
20
|
end
|
20
21
|
end
|
21
22
|
if defined?(Mongoid::Document)
|
data/spec/active_record_spec.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
require_relative
|
2
|
-
require
|
1
|
+
require_relative "spec_helper"
|
2
|
+
require "active_record"
|
3
3
|
|
4
4
|
ActiveRecord::Base.send(:include, TableFormat::ActiveRecord)
|
5
|
-
ActiveRecord::Base.establish_connection(adapter:
|
5
|
+
ActiveRecord::Base.establish_connection(adapter: "sqlite3", database: ":memory:")
|
6
6
|
ActiveRecord::Migration.verbose = false
|
7
7
|
|
8
8
|
ActiveRecord::Schema.define do
|
@@ -35,7 +35,7 @@ EOT
|
|
35
35
|
|------+---|
|
36
36
|
EOT
|
37
37
|
|
38
|
-
ActiveRecord::Base.connection.select_all(
|
38
|
+
ActiveRecord::Base.connection.select_all("select * from users").to_t.should == <<~EOT
|
39
39
|
|----+------|
|
40
40
|
| id | name |
|
41
41
|
|----+------|
|
data/spec/core_ext_spec.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
require_relative
|
1
|
+
require_relative "spec_helper"
|
2
2
|
|
3
3
|
describe TableFormat do
|
4
|
-
require
|
5
|
-
require
|
4
|
+
require "tempfile"
|
5
|
+
require "active_support/testing/stream"
|
6
6
|
include ActiveSupport::Testing::Stream
|
7
7
|
|
8
8
|
it do
|
@@ -13,12 +13,12 @@ describe TableFormat do
|
|
13
13
|
EOT
|
14
14
|
end
|
15
15
|
|
16
|
-
it
|
16
|
+
it "result is like p method" do
|
17
17
|
v = Object.new
|
18
18
|
quietly { tp v }.should == v
|
19
19
|
end
|
20
20
|
|
21
|
-
it
|
21
|
+
it "tp with options" do
|
22
22
|
capture(:stdout) { tp({id: 123}, truncate: 1) }.should == <<~EOT
|
23
23
|
|------+------|
|
24
24
|
| i... | 1... |
|
@@ -26,7 +26,7 @@ describe TableFormat do
|
|
26
26
|
EOT
|
27
27
|
end
|
28
28
|
|
29
|
-
it
|
29
|
+
it "hankaku katakana" do
|
30
30
|
capture(:stdout) { tp("ア") }.should == <<~EOT
|
31
31
|
|---|
|
32
32
|
| ア |
|
data/spec/object_spec.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require_relative
|
1
|
+
require_relative "spec_helper"
|
2
2
|
require "ostruct"
|
3
3
|
|
4
4
|
describe TableFormat do
|
@@ -60,10 +60,10 @@ EOT
|
|
60
60
|
EOT
|
61
61
|
|
62
62
|
C4.to_t.should == <<~EOT
|
63
|
-
|
64
|
-
| #<OpenStruct attributes={:
|
65
|
-
| #<OpenStruct attributes={:
|
66
|
-
|
63
|
+
|----------------------------------|
|
64
|
+
| #<OpenStruct attributes={id: 1}> |
|
65
|
+
| #<OpenStruct attributes={id: 2}> |
|
66
|
+
|----------------------------------|
|
67
67
|
EOT
|
68
68
|
end
|
69
69
|
end
|
data/spec/spec_helper.rb
CHANGED
data/spec/table_format_spec.rb
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
require_relative
|
1
|
+
require_relative "spec_helper"
|
2
2
|
|
3
3
|
describe TableFormat do
|
4
4
|
before do
|
5
5
|
@rows = [
|
6
|
-
{id: 1, name:
|
7
|
-
{id: 2, name:
|
8
|
-
{id: 3, name:
|
6
|
+
{id: 1, name: "alice", description: "0123456789"},
|
7
|
+
{id: 2, name: "bob", description: "あいうえお"},
|
8
|
+
{id: 3, name: "bob"},
|
9
9
|
]
|
10
10
|
end
|
11
11
|
|
12
|
-
it
|
13
|
-
TableFormat.generate([]).should ==
|
12
|
+
it "empty array" do
|
13
|
+
TableFormat.generate([]).should == ""
|
14
14
|
end
|
15
15
|
|
16
|
-
it
|
16
|
+
it "default" do
|
17
17
|
TableFormat.generate(@rows).should == <<~EOT
|
18
18
|
|----+-------+-------------|
|
19
19
|
| id | name | description |
|
@@ -25,7 +25,7 @@ describe TableFormat do
|
|
25
25
|
EOT
|
26
26
|
end
|
27
27
|
|
28
|
-
it
|
28
|
+
it "header: false" do
|
29
29
|
TableFormat.generate(@rows, header: false).should == <<~EOT
|
30
30
|
|---+-------+------------|
|
31
31
|
| 1 | alice | 0123456789 |
|
@@ -35,8 +35,8 @@ EOT
|
|
35
35
|
EOT
|
36
36
|
end
|
37
37
|
|
38
|
-
it
|
39
|
-
TableFormat.generate(@rows, padding:
|
38
|
+
it "padding disable" do
|
39
|
+
TableFormat.generate(@rows, padding: "").should == <<~EOT
|
40
40
|
|--+-----+-----------|
|
41
41
|
|id|name |description|
|
42
42
|
|--+-----+-----------|
|
@@ -47,8 +47,8 @@ EOT
|
|
47
47
|
EOT
|
48
48
|
end
|
49
49
|
|
50
|
-
it
|
51
|
-
TableFormat.generate(@rows, intersection:
|
50
|
+
it "markdown format" do
|
51
|
+
TableFormat.generate(@rows, intersection: "|", cover: false).should == <<~EOT
|
52
52
|
| id | name | description |
|
53
53
|
|----|-------|-------------|
|
54
54
|
| 1 | alice | 0123456789 |
|
@@ -65,15 +65,15 @@ EOT
|
|
65
65
|
EOT
|
66
66
|
end
|
67
67
|
|
68
|
-
it
|
69
|
-
TableFormat.generate([
|
68
|
+
it "Convert line breaks to \n" do
|
69
|
+
TableFormat.generate(['a\nb']).should == <<~'EOT'
|
70
70
|
|------|
|
71
71
|
| a\nb |
|
72
72
|
|------|
|
73
73
|
EOT
|
74
74
|
end
|
75
75
|
|
76
|
-
it
|
76
|
+
it "truncate" do
|
77
77
|
TableFormat.generate(["0123"], truncate: 2).should == <<~EOT
|
78
78
|
|-------|
|
79
79
|
| 01... |
|
@@ -81,8 +81,8 @@ EOT
|
|
81
81
|
EOT
|
82
82
|
end
|
83
83
|
|
84
|
-
describe
|
85
|
-
it
|
84
|
+
describe "various to_t" do
|
85
|
+
it "hash array" do
|
86
86
|
[{a: 1}].to_t.should == <<~EOT
|
87
87
|
|---|
|
88
88
|
| a |
|
@@ -92,7 +92,7 @@ EOT
|
|
92
92
|
EOT
|
93
93
|
end
|
94
94
|
|
95
|
-
it
|
95
|
+
it "Hash" do
|
96
96
|
{a: 1}.to_t.should == <<~EOT
|
97
97
|
|---+---|
|
98
98
|
| a | 1 |
|
@@ -100,8 +100,8 @@ EOT
|
|
100
100
|
EOT
|
101
101
|
end
|
102
102
|
|
103
|
-
it
|
104
|
-
[
|
103
|
+
it "String Array" do
|
104
|
+
["a", "b"].to_t.should == <<~EOT
|
105
105
|
|---|
|
106
106
|
| a |
|
107
107
|
| b |
|
@@ -109,7 +109,7 @@ EOT
|
|
109
109
|
EOT
|
110
110
|
end
|
111
111
|
|
112
|
-
it
|
112
|
+
it "Struct" do
|
113
113
|
Struct.new(:a, :b).new(1, 2).to_h.to_t.should == <<~EOT
|
114
114
|
|---+---|
|
115
115
|
| a | 1 |
|
@@ -118,9 +118,9 @@ EOT
|
|
118
118
|
EOT
|
119
119
|
end
|
120
120
|
|
121
|
-
it
|
121
|
+
it "Others" do
|
122
122
|
1.to_t.should be_present
|
123
|
-
|
123
|
+
"1".to_t.should be_present
|
124
124
|
Module.new.should be_present
|
125
125
|
{[:a] => []}.to_t.should == <<~EOT
|
126
126
|
|------+----|
|
@@ -129,8 +129,8 @@ EOT
|
|
129
129
|
EOT
|
130
130
|
end
|
131
131
|
|
132
|
-
it
|
133
|
-
TableFormat.generate([{
|
132
|
+
it "Array of hashes and width is correct even when value is array" do
|
133
|
+
TableFormat.generate([{"a" => ["a"]}]).should == <<~EOT
|
134
134
|
|-------|
|
135
135
|
| a |
|
136
136
|
|-------|
|
@@ -139,7 +139,7 @@ EOT
|
|
139
139
|
EOT
|
140
140
|
end
|
141
141
|
|
142
|
-
it
|
142
|
+
it "Array containing Hash and others" do
|
143
143
|
TableFormat.generate([["a", "b"], {"c" => "d"}]).should == <<~EOT
|
144
144
|
|-----------------+---|
|
145
145
|
| (array_element) | c |
|
@@ -151,7 +151,7 @@ EOT
|
|
151
151
|
end
|
152
152
|
end
|
153
153
|
|
154
|
-
it
|
154
|
+
it "emoji" do
|
155
155
|
"♡".to_t.should == <<~EOT
|
156
156
|
|----|
|
157
157
|
| ♡ |
|
@@ -159,3 +159,5 @@ EOT
|
|
159
159
|
EOT
|
160
160
|
end
|
161
161
|
end
|
162
|
+
# ~> -:1:in `require_relative': cannot load such file -- /Users/ikeda/src/table_format/spec_helper (LoadError)
|
163
|
+
# ~> from -:1:in `<main>'
|
data/table_format.gemspec
CHANGED
@@ -1,30 +1,32 @@
|
|
1
1
|
# coding: utf-8
|
2
|
-
lib = File.expand_path(
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
4
|
+
require "table_format/version"
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name =
|
7
|
+
spec.name = "table_format"
|
8
8
|
spec.version = TableFormat::VERSION
|
9
|
-
spec.author =
|
10
|
-
spec.email =
|
11
|
-
spec.homepage =
|
12
|
-
spec.summary =
|
13
|
-
spec.description =
|
9
|
+
spec.author = "akicho8"
|
10
|
+
spec.email = "akicho8@gmail.com"
|
11
|
+
spec.homepage = "https://github.com/akicho8/table_format"
|
12
|
+
spec.summary = "TableFormat shows text table like emacs org-table for easy reading."
|
13
|
+
spec.description = "TableFormat shows text table like emacs org-table for easy reading."
|
14
14
|
spec.platform = Gem::Platform::RUBY
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
-
spec.require_paths = [
|
20
|
-
spec.rdoc_options = [
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
spec.rdoc_options = ["--line-numbers", "--inline-source", "--charset=UTF-8", "--diagram", "--image-format=jpg"]
|
21
21
|
|
22
|
-
spec.add_dependency
|
22
|
+
spec.add_dependency "activesupport"
|
23
|
+
spec.add_dependency "nkf"
|
23
24
|
|
24
|
-
spec.add_development_dependency
|
25
|
-
spec.add_development_dependency
|
26
|
-
spec.add_development_dependency
|
25
|
+
spec.add_development_dependency "bundler"
|
26
|
+
spec.add_development_dependency "rake"
|
27
|
+
spec.add_development_dependency "rspec"
|
27
28
|
|
28
|
-
spec.add_development_dependency
|
29
|
-
spec.add_development_dependency
|
29
|
+
spec.add_development_dependency "activerecord"
|
30
|
+
spec.add_development_dependency "sqlite3"
|
31
|
+
spec.add_development_dependency "ostruct"
|
30
32
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: table_format
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akicho8
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activesupport
|
@@ -24,6 +23,20 @@ dependencies:
|
|
24
23
|
- - ">="
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: '0'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: nkf
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
27
40
|
- !ruby/object:Gem::Dependency
|
28
41
|
name: bundler
|
29
42
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,6 +107,20 @@ dependencies:
|
|
94
107
|
- - ">="
|
95
108
|
- !ruby/object:Gem::Version
|
96
109
|
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: ostruct
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
type: :development
|
118
|
+
prerelease: false
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '0'
|
97
124
|
description: TableFormat shows text table like emacs org-table for easy reading.
|
98
125
|
email: akicho8@gmail.com
|
99
126
|
executables: []
|
@@ -130,7 +157,6 @@ files:
|
|
130
157
|
homepage: https://github.com/akicho8/table_format
|
131
158
|
licenses: []
|
132
159
|
metadata: {}
|
133
|
-
post_install_message:
|
134
160
|
rdoc_options:
|
135
161
|
- "--line-numbers"
|
136
162
|
- "--inline-source"
|
@@ -150,8 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
176
|
- !ruby/object:Gem::Version
|
151
177
|
version: '0'
|
152
178
|
requirements: []
|
153
|
-
rubygems_version: 3.
|
154
|
-
signing_key:
|
179
|
+
rubygems_version: 3.6.6
|
155
180
|
specification_version: 4
|
156
181
|
summary: TableFormat shows text table like emacs org-table for easy reading.
|
157
182
|
test_files:
|