The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
CONTRIBUTING 11
Changes 022
MANIFEST 01
META.json 11
META.yml 11
Makefile.PL 11
README 11
lib/Class/Field.pm 11
lib/Class/Field.pod 11
t/000-compile-modules.t 017
t/const.t 21
t/field.t 21
12 files changed (This is a version diff) 1149
@@ -46,7 +46,7 @@ IRC
 
 Class-Field has an IRC channel where you can find real people to help you:
 
-  irc.freenode.net#ingy
+  irc.freenode.net#pkg
 
 Join the channel. Join the team!
 
@@ -1,3 +1,25 @@
+0.23 Thu Aug 21 12:06:13 PDT 2014
+ - Typo fix via PR/1. @wollmers++
+
+0.22 Sat Aug 16 10:53:43 PDT 2014
+ - Meta 0.0.2
+
+0.21 Sat Aug 16 00:52:16 PDT 2014
+ - Eliminate File::Basename from tests
+
+0.20 Fri Aug 15 15:42:06 PDT 2014
+ - Add t/000-compile-modules.t
+ - CPAN Day 2014 - 21 Release Salute!
+
+0.19 Sat Aug  2 10:40:36 PDT 2014
+ - Fix Copyright years in Meta.
+
+0.18 Sat Aug  2 10:18:52 PDT 2014
+ - Fix Copyright years.
+
+0.17 Wed Jul 30 15:39:56 PDT 2014
+ - Switch IRC to
+
 0.16 Sat Jul 26 00:19:48 PDT 2014
  - Switch to Zilla::Dist
 
@@ -9,6 +9,7 @@ Makefile.PL
 README
 lib/Class/Field.pm
 lib/Class/Field.pod
+t/000-compile-modules.t
 t/TestFieldBase.pm
 t/anon.t
 t/const.t
@@ -50,6 +50,6 @@
          "web" : "https://github.com/ingydotnet/class-field-pm"
       }
    },
-   "version" : "0.16"
+   "version" : "0.23"
 }
 
@@ -24,4 +24,4 @@ resources:
   bugtracker: https://github.com/ingydotnet/class-field-pm/issues
   homepage: https://github.com/ingydotnet/class-field-pm
   repository: https://github.com/ingydotnet/class-field-pm.git
-version: '0.16'
+version: '0.23'
@@ -20,7 +20,7 @@ my %WriteMakefileArgs = (
   "LICENSE" => "perl",
   "NAME" => "Class::Field",
   "PREREQ_PM" => {},
-  "VERSION" => "0.16",
+  "VERSION" => "0.23",
   "test" => {
     "TESTS" => "t/*.t"
   }
@@ -50,7 +50,7 @@ FUNCTIONS
         generated method will be somewhat useless.
 
 NOTE
-    this code was taken directly out the Spiffy module for those people who
+    This code was taken directly out the Spiffy module for those people who
     just want this functionality without using the rest of Spiffy.
 
 AUTHOR
@@ -1,6 +1,6 @@
 use strict; use warnings;
 package Class::Field;
-our $VERSION = '0.16';
+our $VERSION = '0.23';
 
 use base 'Exporter';
 
@@ -72,7 +72,7 @@ somewhat useless.
 
 =head1 NOTE
 
-this code was taken directly out the Spiffy module for those people who just
+This code was taken directly out the Spiffy module for those people who just
 want this functionality without using the rest of Spiffy.
 
 =head1 AUTHOR
@@ -0,0 +1,17 @@
+# This test does a basic `use` check on all the code.
+use Test::More;
+
+use File::Find;
+
+sub test {
+    s{^lib/(.*)\.pm$}{$1} or return;
+    s{/}{::}g;
+    use_ok $_;
+}
+
+find {
+    wanted => \&test,
+    no_chdir => 1,
+}, 'lib';
+
+done_testing;
@@ -1,6 +1,5 @@
 use strict;
-use File::Basename;
-use lib dirname(__FILE__), 'inc';
+use lib (-e 't' ? 't' : 'test'), 'inc';
 
 use Test::More tests => 4;
 
@@ -1,6 +1,5 @@
 use strict;
-use File::Basename;
-use lib dirname(__FILE__), 'inc';
+use lib (-e 't' ? 't' : 'test'), 'inc';
 
 use Test::More tests => 9;