Project

blm

0.01
No commit activity in last 3 years
No release in over 3 years
Hurrah! Another pointless text format to parse.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.8.3
>= 0
>= 0
 Project Readme

BLM

A simple parser for the utterly pointless Rightmove .blm file format.

Usage

Using the gem is very simple; just pass it a string of data:

@blm = BLM::Document.new( File.open("example_data.blm", "r").read )

You will then have access to @blm.header, @blm.definition, and @blm.data:

@blm.data.each do |row|
	puts row.address_1
end