Skip to content

Commit

Permalink
Added possibly required modules
Browse files Browse the repository at this point in the history
  • Loading branch information
mfontani committed Jul 16, 2009
1 parent 691e9fa commit 7430850
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
7 changes: 7 additions & 0 deletions dist.ini
Expand Up @@ -8,3 +8,10 @@ copyright_holder = Marco Fontani


[Prereq] [Prereq]
Moose = 0.87 Moose = 0.87
MooseX::StrictConstructor = 0
Data::Stream::Bulk::Callback = 0
DateTime::Format::HTTP = 0
LWP::ConnCache::MaxKeepAliveRequests = 0
LWP::UserAgent::Determined = 0
URI::QueryParam = 0

16 changes: 12 additions & 4 deletions lib/Net/Mosso/CloudServers.pm
@@ -1,12 +1,23 @@
package Net::Mosso::CloudServers; package Net::Mosso::CloudServers;
use warnings; use warnings;
use strict; use strict;
use Moose;
use MooseX::StrictConstructor;
use Data::Stream::Bulk::Callback;
use DateTime::Format::HTTP;
use LWP::ConnCache::MaxKeepAliveRequests;
use LWP::UserAgent::Determined;
use URI::QueryParam;

our $DEBUG = 0;

no Moose;
__PACKAGE__->meta->make_immutable();


=head1 NAME =head1 NAME
Net::Mosso::CloudServers - The great new Net::Mosso::CloudServers! Net::Mosso::CloudServers - The great new Net::Mosso::CloudServers!
=head1 SYNOPSIS =head1 SYNOPSIS
Quick summary of what the module does. Quick summary of what the module does.
Expand Down Expand Up @@ -49,9 +60,6 @@ Please report any bugs or feature requests to C<bug-net-mosso-cloudservers at rt
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Mosso-CloudServers>. I will be notified, and then you'll the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Mosso-CloudServers>. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes. automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT =head1 SUPPORT
You can find documentation for this module with the perldoc command. You can find documentation for this module with the perldoc command.
Expand Down

0 comments on commit 7430850

Please sign in to comment.