Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
CSV /
Delete
Unzip
Name
Size
Permission
Date
Action
BasicWriter
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
Cell
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
IOBuf
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
IOReader
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
IllegalFormatError
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
Reader
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
Row
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
StreamBuf
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
StringReader
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
Writer
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
cdesc-CSV.yaml
1.18
KB
-rw-r--r--
2023-07-26 09:39
foreach-c.yaml
187
B
-rw-r--r--
2023-07-26 09:39
generate-c.yaml
199
B
-rw-r--r--
2023-07-26 09:39
generate_body-c.yaml
199
B
-rw-r--r--
2023-07-26 09:39
generate_line-c.yaml
296
B
-rw-r--r--
2023-07-26 09:39
generate_row-c.yaml
1.4
KB
-rw-r--r--
2023-07-26 09:39
generate_separator-c.yaml
209
B
-rw-r--r--
2023-07-26 09:39
open-c.yaml
2.28
KB
-rw-r--r--
2023-07-26 09:39
open_reader-c.yaml
217
B
-rw-r--r--
2023-07-26 09:39
open_writer-c.yaml
223
B
-rw-r--r--
2023-07-26 09:39
parse-c.yaml
333
B
-rw-r--r--
2023-07-26 09:39
parse_body-c.yaml
188
B
-rw-r--r--
2023-07-26 09:39
parse_line-c.yaml
570
B
-rw-r--r--
2023-07-26 09:39
parse_row-c.yaml
1.51
KB
-rw-r--r--
2023-07-26 09:39
read-c.yaml
191
B
-rw-r--r--
2023-07-26 09:39
readlines-c.yaml
183
B
-rw-r--r--
2023-07-26 09:39
Save
Rename
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Convert a line from cells data to string. Consider using CSV.generate_line instead. To generate multi-row CSV string, see EXAMPLE below. - !ruby/struct:SM::Flow::P body: EXAMPLE - !ruby/struct:SM::Flow::VERB body: " row1 = ['a', 'b']\n row2 = ['c', 'd']\n row3 = ['e', 'f']\n src = [row1, row2, row3]\n buf = ''\n src.each do |row|\n parsed_cells = CSV.generate_row(row, 2, buf)\n puts "Created #{ parsed_cells } cells."\n end\n p buf\n" - !ruby/struct:SM::Flow::P body: ARGS - !ruby/struct:SM::Flow::VERB body: " src: an Array of String to be converted to CSV string. Must respond to\n 'size' and '[](idx)'. src[idx] must return String.\n cells: num of cells in a line.\n out_dev: buffer for generated CSV string. Must respond to '<<(string)'.\n col_sep: Column separator. ?, by default. If you want to separate\n fields with semicolon, give ?; here.\n row_sep: Row separator. nil by default. nil means "\\r\\n or \\n". If you\n want to separate records with \\r, give ?\\r here.\n" - !ruby/struct:SM::Flow::P body: RETURNS - !ruby/struct:SM::Flow::VERB body: " parsed_cells: num of converted cells.\n" full_name: CSV::generate_row is_singleton: true name: generate_row params: (src, cells, out_dev, fs = nil, rs = nil) visibility: public