Changeset 17633 for lang/perl/Moxy

Show
Ignore:
Timestamp:
08/15/08 01:02:24 (5 months ago)
Author:
tokuhirom
Message:

use HTTP::Engine::Compat

Location:
lang/perl/Moxy/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Moxy/trunk/Makefile.PL

    r13915 r17633  
    1414 
    1515requires 'Class::Component' => 0.16; 
    16 requires 'HTTP::Engine' => '0.0.11'; 
     16requires 'HTTP::Engine' => '0.0.13'; 
     17requires 'HTTP::Engine::Compat' => '0.0.1'; 
    1718requires 'HTTP::MobileAttribute'; 
    1819requires 'CGI'; 
  • lang/perl/Moxy/trunk/lib/Moxy.pm

    r13916 r17633  
    181181    my %args = validate( 
    182182        @_ => +{ 
    183             c       => { isa  => 'HTTP::Engine::Context', }, 
     183            c       => { isa  => 'HTTP::Engine::Compat::Context', }, 
    184184            user_id => { type => SCALAR }, 
    185185        } 
  • lang/perl/Moxy/trunk/lib/Moxy/Cmd.pm

    r15884 r17633  
    66use File::Spec::Functions; 
    77use FindBin; 
    8 use HTTP::Engine; 
     8use HTTP::Engine::Compat; 
    99use Moxy; 
    1010use YAML;