lib/ezmlm.rb
changeset 20 9d59d30685cb
parent 18 9aaac749fd9f
child 22 d1b9dd767e3a
equal deleted inserted replaced
19:c09ca4007e6c 20:9d59d30685cb
     1 # vim: set nosta noet ts=4 sw=4:
     1 # vim: set nosta noet ts=4 sw=4:
     2 
     2 
       
     3 require 'pathname'
     3 
     4 
     4 # A Ruby interface to the ezmlm-idx mailing list system.
     5 # A Ruby interface to the ezmlm-idx mailing list system.
     5 #
     6 #
     6 #   Ezmlm.find_directories( '/lists' ) #=> [ Ezmlm::List, Ezmlm::List ]
     7 #   Ezmlm.find_directories( '/lists' ) #=> [ Ezmlm::List, Ezmlm::List ]
     7 #
     8 #
     8 #   Ezmlm.each_list( '/lists' ) do |list|
     9 #   Ezmlm.each_list( '/lists' ) do |list|
     9 #       puts "\"%s\" <%s>" % [ list.name, list.address ]
    10 #       puts "\"%s\" <%s>" % [ list.name, list.address ]
    10 #   end
    11 #   end
    11 #
    12 #
    12 #
       
    13 # == Version
       
    14 #
       
    15 #  $Id$
       
    16 #
       
    17 #---
       
    18 #
       
    19 # Please see the file LICENSE in the base directory for licensing details.
       
    20 #
       
    21 
       
    22 require 'pathname'
       
    23 
       
    24 
       
    25 ### Toplevel namespace module
       
    26 module Ezmlm
    13 module Ezmlm
       
    14 	# $Id$
    27 
    15 
    28 	# Package version
    16 	# Package version
    29 	VERSION = '1.0.0'
    17 	VERSION = '1.0.1'
    30 
    18 
    31 	# Suck in the components.
    19 	# Suck in the components.
    32 	#
    20 	#
    33 	require 'ezmlm/hash'
    21 	require 'ezmlm/hash'
    34 	require 'ezmlm/list'
    22 	require 'ezmlm/list'