WWW-Twilio-TwiML version 1.05
=============================

WWW::Twilio::TwiML is a small module for creating Twilio-compatible
TwiML documents:

  my $tw = new WWW::Twilio::TwiML;
  $tw->Response
    ->Say("Lookin' out my backdoor");
  print $tw->to_string;

becomes:

  <?xml version="1.0" encoding="UTF-8" ?>
  <Response>
    <Say>Lookin&apos; out my backdoor</Say>
  </Response>

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

  none

COPYRIGHT AND LICENCE

Copyright (C) 2011 by Scott Wiersdorf

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.0 or,
at your option, any later version of Perl 5 you may have available.