0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Provides an easy way to manage a huge amount of domain specific string2value conversions. Mostly useful to convert legacy CSV-Fields from strings with domain specific rules
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 1.6
>= 0
~> 1.2
~> 2.1
~> 2
~> 0.7
 Project Readme

dump-parser

Build Status Dependency Status Code Climate

A simple and dump dsl for converting strings, most likely from legacy csv fields into something more interesting.

Installation

In your Gemfile

gem 'dump-parser', :git => 'https://github.com/mbj/dump-parser'

Examples

require 'dump-parser'

# Yeah does not look very nice, but could not come up with something better.
DumpParser.register :dd_mm_yyyy_date_time do
  nil_if_empty
  require_format(%r(\A(\d{2})\.(\d{2})\.(\d{4})\z))
  begin
    DateTime.new(match[3].to_i(10), match[2].to_i(10), match[1].to_i(10))
  rescue ArgumentError
    parse_error('is invalid date')
  end
end

DumpParser.register :required_integer do
  require_format(%r(\A\d+\z))
  value.to_i(10)
end

DumpParser.execute(:dd_mm_yyyy_date_time, "")            # => nil
DumpParser.execute(:dd_mm_yyyy_date_time, "10.01.1901")  # => DateTime.new(1901,01,10)
DumpParser.execute(:dd_mm_yyyy_date_time, "invalid")     # raises DumpParser::ParseError 'dd_mm_yyyy_date: value "invalid" does not match required format')
DumpParser.execute(:dd_mm_yyyy_date_time, "31.02.2011")  # raises DumpParser::ParseError 'dd_mm_yyyy_date: value "31.02.2011" is invalid date')

Credits

Your name is missing here!

Contributing

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with Rakefile or version (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

License

Copyright (c) 2012 Markus Schirp

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.