Make Gruntmaster::Page::Base also act as strict/warnings/feature/etc
[gruntmaster-page.git] / lib / Gruntmaster / Page / Generic.pm
index 37e793105b1de231c1b04ce024e01baebb833318..9e097c052737e053f6a980a5972e7d3cc9e41d31 100644 (file)
@@ -3,12 +3,11 @@ package Gruntmaster::Page::Generic;
 use 5.014000;
 use strict;
 use warnings;
+our $VERSION = '0.001';
 
 use Gruntmaster::Data;
 use Gruntmaster::Page::Base;
-use JSON qw/decode_json/;
-our @ISA = qw/Gruntmaster::Page::Base/;
-our $VERSION = '0.001';
+use JSON qw/encode_json decode_json/;
 
 sub hgetall {
        my $hash = shift;
@@ -28,7 +27,7 @@ sub makepkg {
        return if $INC{"$fn.pm"};
        $INC{"$fn.pm"} = 1;
        Gruntmaster::Page::Base->import_to($pkg, $id, $title);
-       putsym "${pkg}::ISA", ['Gruntmaster::Page::Base'];
+       1
 }
 
 sub make_generate {
This page took 0.010288 seconds and 4 git commands to generate.