Changeset 91 in text-formbuilder for trunk


Ignore:
Timestamp:
03/13/12 23:48:47 (12 years ago)
Author:
peter
Message:
  • switched from EU::MakeMaker to Module::Build
  • pre-compile the Text::FormBuilder::Parser as part of the build process, using a .PL file
  • updated the module version to 0.14
Location:
trunk
Files:
2 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Changes

    r90 r91  
    11Release history for Text::FormBuilder. 
     2 
     30.14 
     4    * switched from EU::MakeMaker to Module::Build 
     5    * precompile the Text::FormBuilder::Parser at module build time, 
     6      so it uses the user's version of Parse::RecDescent 
    27 
    380.13 - 24 Apr 2008 
  • trunk/MANIFEST

    r77 r91  
    11Changes 
    2 Makefile.PL 
     2Build.PL 
    33MANIFEST 
    44README 
     
    99lib/Text/FormBuilder.pm 
    1010lib/Text/FormBuilder/Examples.pod 
    11 lib/Text/FormBuilder/Parser.pm 
    1211lib/Text/FormBuilder/grammar 
    1312lib/Class/ParseText/Base.pm 
    14 META.yml                                 Module meta-data (added by MakeMaker) 
  • trunk/README

    r89 r91  
    1 Text-FormBuilder version 0.12 
     1Text-FormBuilder version 0.14 
    22============================= 
    33 
     
    66To install this module type the following: 
    77 
    8    perl Makefile.PL 
    9    make 
    10    make test 
    11    make install 
     8   perl Build.PL 
     9   ./Build 
     10   ./Build test 
     11   ./Build install 
    1212 
    1313DEPENDENCIES 
  • trunk/lib/Text/FormBuilder.pm

    r90 r91  
    77use vars qw($VERSION @EXPORT); 
    88 
    9 $VERSION = '0.13'; 
     9$VERSION = '0.14'; 
    1010@EXPORT = qw(create_form); 
    1111 
Note: See TracChangeset for help on using the changeset viewer.