From: Orlando Vazquez Date: Sun, 31 May 2009 20:17:11 +0000 (+0000) Subject: since the prepare_path behaviour has changed, juice the "version" up X-Git-Tag: 0.03~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Engine-SCGI.git;a=commitdiff_plain;h=74b7d482c04e9dc43ee1a1c706b8b782fc8f0956 since the prepare_path behaviour has changed, juice the "version" up --- diff --git a/META.yml b/META.yml index 0747c47..5f93252 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ --- name: Catalyst-Engine-SCGI -version: 0.1 -author: Victor Igumnov +version: 0.2 +author: Orlando Vazquez abstract: Catalyst SCGI Engine license: perl provides: diff --git a/lib/Catalyst/Engine/SCGI.pm b/lib/Catalyst/Engine/SCGI.pm index 3b6fb8b..79a6ffe 100644 --- a/lib/Catalyst/Engine/SCGI.pm +++ b/lib/Catalyst/Engine/SCGI.pm @@ -1,14 +1,14 @@ package Catalyst::Engine::SCGI; use strict; +use warnings; + use base 'Catalyst::Engine::CGI'; eval "use SCGI"; die "Please install SCGI\n" if $@; use IO::Socket; -use Data::Dumper; - -my $uri_proto=URI->new(); +our $VERSION = '0.02'; =head1 NAME diff --git a/lib/Catalyst/Helper/SCGI.pm b/lib/Catalyst/Helper/SCGI.pm index 6dc6a35..314d3a9 100644 --- a/lib/Catalyst/Helper/SCGI.pm +++ b/lib/Catalyst/Helper/SCGI.pm @@ -5,6 +5,8 @@ use strict; use Config; use File::Spec; +our $VERSION = '0.02'; + =head1 NAME Catalyst::Helper::SCGI - SCGI helper to create a scgi runner script to run the SCGI engine.