Sha256: 93fd73856a959f7e06bf9f1c80247eae1bc5d54579d82c01c59ae12356487bc1

Contents?: true

Size: 379 Bytes

Versions: 4

Compression:

Stored size: 379 Bytes

Contents

# toon

`toon` is a Ruby gem that makes it easy to cleanup and format data.

## Example

The following code:

```ruby
require 'toon'

rows = [
  %w[ Name DOB      ],
  %w[ tom  19710413 ],
  %w[ mIkE 19690918 ],
]

p toon! rows, <<~""
  Name  tune
  DOB   to_yyyymmdd_ymd
```

will produce:

```text
[["Name", "DOB"       ],
 ["Tom" , "04/13/1971"],
 ["Mike", "09/18/1969"]]
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
toon-0.0.4 README.md
toon-0.0.3 README.md
toon-0.0.2 README.md
toon-0.0.1 README.md