summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-06-14 12:29:51 -0500
committerJesse Luehrs <doy@tozt.net>2011-06-14 12:29:51 -0500
commit6e242023eb97405f9a0a283c07e9d6a64c6a3b21 (patch)
tree55423eaf7e1cab3a03ca040512830d759de0c84f
parent3edca453f642917f53c6fbfa59683fd70204813d (diff)
downloadsub-exporter-declare-6e242023eb97405f9a0a283c07e9d6a64c6a3b21.tar.gz
sub-exporter-declare-6e242023eb97405f9a0a283c07e9d6a64c6a3b21.zip
rename to Sub::Exporter::DeclareHEADmaster
-rw-r--r--.gitignore2
-rw-r--r--Changes2
-rw-r--r--dist.ini4
-rw-r--r--lib/Sub/Exporter/Declare.pm (renamed from lib/Sub/Exporter/Sugar.pm)2
-rw-r--r--t/basic.t2
5 files changed, 6 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index 12e90b0..869376d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,4 +10,4 @@ nytprof.out
MANIFEST.bak
*.sw[po]
.build
-Sub-Exporter-Sugar-*
+Sub-Exporter-Declare-*
diff --git a/Changes b/Changes
index 8370da4..7732f49 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,4 @@
-Revision history for Sub-Exporter-Sugar
+Revision history for Sub-Exporter-Declare
{{$NEXT}}
- Initial release
diff --git a/dist.ini b/dist.ini
index 5daf606..b3cb90b 100644
--- a/dist.ini
+++ b/dist.ini
@@ -1,9 +1,9 @@
-name = Sub-Exporter-Sugar
+name = Sub-Exporter-Declare
author = Jesse Luehrs <doy at tozt dot net>
license = Perl_5
copyright_holder = Jesse Luehrs
[@DOY]
-dist = Sub-Exporter-Sugar
+dist = Sub-Exporter-Declare
[Prereqs]
diff --git a/lib/Sub/Exporter/Sugar.pm b/lib/Sub/Exporter/Declare.pm
index 2370279..9f20149 100644
--- a/lib/Sub/Exporter/Sugar.pm
+++ b/lib/Sub/Exporter/Declare.pm
@@ -1,4 +1,4 @@
-package Sub::Exporter::Sugar;
+package Sub::Exporter::Declare;
use strict;
use warnings;
diff --git a/t/basic.t b/t/basic.t
index 09ba03f..4ec6787 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -5,7 +5,7 @@ use Test::More;
BEGIN {
package My::Exporter;
- use Sub::Exporter::Sugar;
+ use Sub::Exporter::Declare;
export 'foo';
export_default 'bar';