Sha256: 5a3ca6faea2b85ac44348b7fcdc24a39a61ca1aa9f427d891c62902ad4510e83

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

#--
#     This file is part of the X12Parser library that provides tools to
#     manipulate X12 messages using Ruby native syntax.
#
#     http://x12parser.rubyforge.org 
#     
#     Copyright (C) 2008 APP Design, Inc.
#
#     This library is free software; you can redistribute it and/or
#     modify it under the terms of the GNU Lesser General Public
#     License as published by the Free Software Foundation; either
#     version 2.1 of the License, or (at your option) any later version.
#
#     This library is distributed in the hope that it will be useful,
#     but WITHOUT ANY WARRANTY; without even the implied warranty of
#     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#     Lesser General Public License for more details.
#
#     You should have received a copy of the GNU Lesser General Public
#     License along with this library; if not, write to the Free Software
#     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
#++
#
$:.unshift(File.dirname(__FILE__))

require 'rubygems'
require 'treetop'

require 'X12/base'
require 'X12/empty'
require 'X12/field'
require 'X12/composite'
require 'X12/segment'
require 'X12/table'
require 'X12/loop'
require 'X12/parser'

# This relies on the polyglot package to compile and load x12syntax.treetop
require 'x12/x12syntax'

# $Id: X12.rb 59 2009-03-19 22:32:13Z ikk $
#
# Package implementing direct manipulation of X12 structures using Ruby syntax.

module X12

  VERSION = '0.1.0'
  EMPTY = Empty.new()
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
X12-0.1.0 lib/X12.rb