equal
deleted
inserted
replaced
|
1 #!/usr/bin/ruby |
|
2 # |
|
3 # A Ruby interface to a single Ezmlm-idx mailing list directory |
|
4 # |
|
5 # == Version |
|
6 # |
|
7 # $Id$ |
|
8 # |
|
9 # == Authors |
|
10 # |
|
11 # * Michael Granger <mgranger@laika.com> |
|
12 # * Jeremiah Jordan <jjordan@laika.com> |
|
13 # |
|
14 # :include: LICENSE |
|
15 # |
|
16 #--- |
|
17 # |
|
18 # Please see the file LICENSE in the base directory for licensing details. |
|
19 # |
|
20 |
|
21 require 'pathname' |
|
22 require 'ezmlm' |
|
23 |
|
24 |
|
25 ### A Ruby interface to an ezmlm-idx mailing list directory |
|
26 class Ezmlm::List |
|
27 |
|
28 end |
|
29 |
|
30 # vim: set nosta noet ts=4 sw=4: |