aboutsummaryrefslogtreecommitdiff
path: root/lib/Sietima/Policy.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Sietima/Policy.pm')
-rw-r--r--lib/Sietima/Policy.pm48
1 files changed, 37 insertions, 11 deletions
diff --git a/lib/Sietima/Policy.pm b/lib/Sietima/Policy.pm
index 130cb44..c3f8533 100644
--- a/lib/Sietima/Policy.pm
+++ b/lib/Sietima/Policy.pm
@@ -4,9 +4,35 @@ use strict;
use warnings;
use feature ':5.36';
-# VERSION
+our $VERSION = '1.1.2'; # VERSION
# ABSTRACT: pragma for Sietima modules
+
+sub import {
+ # These affect the currently compiling scope,
+ # so no need for import::into
+ strict->import;
+ warnings->import;
+ feature->import(':5.36');
+ return;
+}
+
+1;
+
+__END__
+
+=pod
+
+=encoding UTF-8
+
+=head1 NAME
+
+Sietima::Policy - pragma for Sietima modules
+
+=head1 VERSION
+
+version 1.1.2
+
=head1 SYNOPSIS
use v5.36;
@@ -23,15 +49,15 @@ or just:
This module imports the pragmas shown in the L</synopsis>. All Sietima
modules use it.
-=cut
+=head1 AUTHOR
-sub import {
- # These affect the currently compiling scope,
- # so no need for import::into
- strict->import;
- warnings->import;
- feature->import(':5.36');
- return;
-}
+Gianni Ceccarelli <dakkar@thenautilus.net>
-1;
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2023 by Gianni Ceccarelli <dakkar@thenautilus.net>.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=cut