0.0
No release in over 3 years
Low commit activity in last 3 years
You know those times when you're dealing with a 10-year-old government API and they require a text file where every field has to be in a certain position? TabularText for the rescue!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 6.0
 Project Readme

TabularText¶ ↑

TabularText helps you create files composed of lines with fields in fixed positions. Yes, people still use that. Yes, a more structured format would be best.

Example, writing

builder.line do |l| 
  l.field 'Name has 30 chars', 30
  l.field 1, 6
  l.field 27
end

will generate

Name has 30 chars             00000127

A more detailed README will be written the day anyone thinks about using this.