diff options
author | Stefan Kangas <skangas@skangas.se> | 2011-03-14 17:20:32 +0100 |
---|---|---|
committer | Stefan Kangas <skangas@skangas.se> | 2011-03-14 17:20:32 +0100 |
commit | bad3c7cdf557c76f05bfee0b07257264b3c5d04e (patch) | |
tree | a4d80340729b2b1d8fec7cfecbe922a84869fdbf | |
parent | daad29e615acdb0f3778f5b9e120f2b1df0ac302 (diff) |
Fix package statements
-rwxr-xr-x | lib/Fripost/Logger.pm | 3 | ||||
-rwxr-xr-x | lib/Fripost/Password.pm | 3 | ||||
-rwxr-xr-x | lib/Fripost/Prompt.pm | 3 | ||||
-rwxr-xr-x | lib/Fripost/Schema.pm | 1 |
4 files changed, 3 insertions, 7 deletions
diff --git a/lib/Fripost/Logger.pm b/lib/Fripost/Logger.pm index c515a5c..0aacf2c 100755 --- a/lib/Fripost/Logger.pm +++ b/lib/Fripost/Logger.pm @@ -1,7 +1,6 @@ -#!/usr/bin/perl +package Fripost::Logger; use 5.010_000; -use warnings; use strict; =head1 NAME diff --git a/lib/Fripost/Password.pm b/lib/Fripost/Password.pm index 767bee1..12be42f 100755 --- a/lib/Fripost/Password.pm +++ b/lib/Fripost/Password.pm @@ -1,7 +1,6 @@ -#!/usr/bin/perl +package Fripost::Password; use 5.010_000; -use warnings; use strict; =head1 NAME diff --git a/lib/Fripost/Prompt.pm b/lib/Fripost/Prompt.pm index a7e517c..76529ec 100755 --- a/lib/Fripost/Prompt.pm +++ b/lib/Fripost/Prompt.pm @@ -1,7 +1,6 @@ -#!/usr/bin/perl +package Fripost::Prompt; use 5.010_000; -use warnings; use strict; =head1 NAME diff --git a/lib/Fripost/Schema.pm b/lib/Fripost/Schema.pm index 440d2ed..c9cc832 100755 --- a/lib/Fripost/Schema.pm +++ b/lib/Fripost/Schema.pm @@ -1,7 +1,6 @@ package Fripost::Schema; use 5.010_000; -use warnings; use strict; use base qw/DBIx::Class::Schema/; |