org_tp 0.0.7 → 0.0.8
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/lib/org_tp/generator.rb +44 -16
- data/lib/org_tp/version.rb +1 -1
- data/spec/org_tp_spec.rb +11 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5739280d770002d46e6eaf8ce1926db5b2cce7dc
|
4
|
+
data.tar.gz: 56097cb749aff8e5661932544774829abc1c328b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a56e75a5c191b9d6a8221999dc9a90c2d891cd8a381c2a8e9f8ef2d2762e7031ab4b93c22e8e1b72d1a3f6f3d736af2c9a6ebc9068465d6e04c96ed916258c6d
|
7
|
+
data.tar.gz: 9d27789a067b83ca23da8676fd9b283da5757981adb8e35fe4f8c18aa690f2527b7e72fe2edae26247b44f3a31d330cb87da065cad3771ea95792267225a9ed0
|
data/lib/org_tp/generator.rb
CHANGED
@@ -128,6 +128,7 @@ module OrgTp
|
|
128
128
|
|
129
129
|
def pre_processes
|
130
130
|
[
|
131
|
+
# Hash
|
131
132
|
{
|
132
133
|
_case: -> e { e.kind_of?(Hash) },
|
133
134
|
header: false,
|
@@ -137,24 +138,40 @@ module OrgTp
|
|
137
138
|
end
|
138
139
|
},
|
139
140
|
},
|
141
|
+
|
142
|
+
# Array of Hash
|
140
143
|
{
|
141
|
-
_case: -> e { e.kind_of?(Array) && e.
|
144
|
+
_case: -> e { e.kind_of?(Array) && e.all? { |e| e.kind_of?(Hash) } }, # !> shadowing outer local variable - e
|
145
|
+
header: true,
|
146
|
+
process: -> e { e },
|
147
|
+
},
|
148
|
+
|
149
|
+
# Array excluding Hash
|
150
|
+
{
|
151
|
+
_case: -> e { e.kind_of?(Array) && e.none? { |e| e.kind_of?(Hash) } }, # !> shadowing outer local variable - e
|
142
152
|
header: false,
|
143
153
|
process: -> e {
|
144
|
-
e.collect do |e|
|
154
|
+
e.collect do |e| # !> shadowing outer local variable - e
|
155
|
+
{'(array_element)' => e}
|
156
|
+
end
|
157
|
+
},
|
158
|
+
},
|
159
|
+
|
160
|
+
# Array containing Hash and others
|
161
|
+
{
|
162
|
+
_case: -> e { e.kind_of?(Array) && e.any? { |e| !e.kind_of?(Hash) } }, # !> shadowing outer local variable - e
|
163
|
+
header: true,
|
164
|
+
process: -> e {
|
165
|
+
e.collect do |e| # !> shadowing outer local variable - e
|
145
166
|
if e.kind_of? Hash
|
146
167
|
e
|
147
168
|
else
|
148
|
-
{'(
|
169
|
+
{'(array_element)' => e}
|
149
170
|
end
|
150
171
|
end
|
151
172
|
},
|
152
173
|
},
|
153
|
-
|
154
|
-
_case: -> e { e.kind_of?(Array) && e.all? { |e| e.kind_of?(Hash) } },
|
155
|
-
header: true,
|
156
|
-
process: -> e { e },
|
157
|
-
},
|
174
|
+
|
158
175
|
]
|
159
176
|
end
|
160
177
|
end
|
@@ -170,19 +187,30 @@ if $0 == __FILE__
|
|
170
187
|
print OrgTp.generate([])
|
171
188
|
print OrgTp.generate(rows)
|
172
189
|
print OrgTp.generate({a: 1, b: 2}, header: false)
|
190
|
+
print OrgTp.generate([["a", "b"], ["c", "d"]])
|
191
|
+
print OrgTp.generate([["a", "b"], {"c" => "d"}])
|
173
192
|
end
|
174
|
-
# >>
|
193
|
+
# >> |---+----|
|
175
194
|
# >> | a | [] |
|
176
|
-
# >>
|
177
|
-
# >>
|
178
|
-
# >> +----+-------+-------------+
|
195
|
+
# >> |---+----|
|
196
|
+
# >> |----+-------+-------------|
|
179
197
|
# >> | id | name | description |
|
180
|
-
# >>
|
198
|
+
# >> |----+-------+-------------|
|
181
199
|
# >> | 1 | alice | 0123456789 |
|
182
200
|
# >> | 2 | bob | あいうえお |
|
183
201
|
# >> | 3 | carol | |
|
184
|
-
# >>
|
185
|
-
# >>
|
202
|
+
# >> |----+-------+-------------|
|
203
|
+
# >> |---+---|
|
186
204
|
# >> | a | 1 |
|
187
205
|
# >> | b | 2 |
|
188
|
-
# >>
|
206
|
+
# >> |---+---|
|
207
|
+
# >> |------------|
|
208
|
+
# >> | ["a", "b"] |
|
209
|
+
# >> | ["c", "d"] |
|
210
|
+
# >> |------------|
|
211
|
+
# >> |-----------------+---|
|
212
|
+
# >> | (array_element) | c |
|
213
|
+
# >> |-----------------+---|
|
214
|
+
# >> | ["a", "b"] | |
|
215
|
+
# >> | | d |
|
216
|
+
# >> |-----------------+---|
|
data/lib/org_tp/version.rb
CHANGED
data/spec/org_tp_spec.rb
CHANGED
@@ -103,6 +103,17 @@ EOT
|
|
103
103
|
|-------|
|
104
104
|
| ["a"] |
|
105
105
|
|-------|
|
106
|
+
EOT
|
107
|
+
end
|
108
|
+
|
109
|
+
it 'Array containing Hash and others' do
|
110
|
+
OrgTp.generate([["a", "b"], {"c" => "d"}]).should == <<~EOT
|
111
|
+
|-----------------+---|
|
112
|
+
| (array_element) | c |
|
113
|
+
|-----------------+---|
|
114
|
+
| ["a", "b"] | |
|
115
|
+
| | d |
|
116
|
+
|-----------------+---|
|
106
117
|
EOT
|
107
118
|
end
|
108
119
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: org_tp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akicho8
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|