• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Config/H12-Feb-2021-2,390929

t/H12-Feb-2021-782657

ChangesH A D12-Feb-2021785 3021

LICENSEH A D22-Aug-201934.3 KiB675553

MANIFESTH A D12-Feb-2021682 3635

MANIFEST.SKIPH A D22-Aug-2019884 6354

META.jsonH A D12-Feb-20212.1 KiB8483

META.ymlH A D12-Feb-20211.2 KiB4948

Makefile.PLH A D12-Feb-20211.1 KiB3936

READMEH A D22-Aug-20191.1 KiB3827

README

1Config::AST
2===========
3
4This module aims to provide a generalized syntax tree implementation for
5various configuration files. It does not implement parser for any existing
6configuration file format. Instead, it provides an API that can be used by
7parsers to build internal representation for the particular configuration
8file format.
9
10See the Config::Parser module for an implementation of a parser based on
11this module.
12
13INSTALLATION
14
15Usual way:
16
17   perl Makefile.PL
18   make
19   make test
20   make install
21
22COPYRIGHT AND LICENCE
23
24Copyright (C) 2018-2019 by Sergey Poznyakoff
25
26This library is free software; you can redistribute it and/or modify it
27under the terms of the GNU General Public License as published by the
28Free Software Foundation; either version 3 of the License, or (at your
29option) any later version.
30
31It is distributed in the hope that it will be useful,
32but WITHOUT ANY WARRANTY; without even the implied warranty of
33MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
34GNU General Public License for more details.
35
36You should have received a copy of the GNU General Public License along
37with this library. If not, see <http://www.gnu.org/licenses/>.
38