Skip to content

Commit

Permalink
use Angelos::Core
Browse files Browse the repository at this point in the history
  • Loading branch information
dann committed Feb 28, 2009
1 parent b293c08 commit 0fba092
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
12 changes: 6 additions & 6 deletions angelos-core/Makefile.PL
Expand Up @@ -25,7 +25,7 @@ if (HAVE_MP) {
}

name 'Angelos';
all_from 'lib/Angelos.pm';
all_from 'lib/Angelos/Core.pm';

requires(

Expand Down Expand Up @@ -54,6 +54,10 @@ requires(
'Data::Util' => 0,
'Class::Singleton' => 0,

# Angelos Plugins
'Text::SimpleTable' => 0,
'File::Find::Rule' => 0,

# Config
'Kwalify' => 0,
'YAML' => 0,
Expand All @@ -69,12 +73,8 @@ requires(
'File::Slurp' => 0,
'File::HomeDir' => 0,
'Devel::EvalContext' => 0,

# BootLoader Plugins
'Text::SimpleTable' => 0,
'File::Find::Rule' => 0,
'Term::ReadLine' => 0,
'JSON::XS' => 0,
'Term::ReadLine' => 0,

# Components
'Template' => 0,
Expand Down
6 changes: 4 additions & 2 deletions angelos-core/lib/Angelos/Core.pm
@@ -1,12 +1,15 @@
package Angelos::Core;

use strict;
use warnings;

BEGIN { require 5.008001; }

our $VERSION='0.01';

1;

__END__
=head1 NAME
Angelos::Core - Angelos::Core classes
Expand All @@ -29,4 +32,3 @@ the same terms as Perl itself.
=cut
1;

0 comments on commit 0fba092

Please sign in to comment.