Create Makefile, Changes, set version
Jess Robinson [Fri, 18 May 2007 10:37:41 +0000 (10:37 +0000)]
Changes [new file with mode: 0644]
MANIFEST [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]
lib/DBIx/Class/Schema/Journal.pm

diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..b257781
--- /dev/null
+++ b/Changes
@@ -0,0 +1,5 @@
+
+0.01 2007-05-18:
+Initial version
+
+
diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..d6e2233
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,18 @@
+Changes
+lib/DBIx/Class/Journal.pm
+lib/DBIx/Class/Schema/Journal.pm
+lib/DBIx/Class/Schema/Journal/DB.pm
+lib/DBIx/Class/Schema/Journal/DB/AuditHistory.pm
+lib/DBIx/Class/Schema/Journal/DB/AuditLog.pm
+lib/DBIx/Class/Schema/Journal/DB/AuduitLog.pm
+lib/DBIx/Class/Schema/Journal/DB/Base.pm
+lib/DBIx/Class/Schema/Journal/DB/Change.pm
+lib/DBIx/Class/Schema/Journal/DB/ChangeSet.pm
+Makefile.PL
+MANIFEST                       This list of files
+t/01test.t
+t/lib/DBICTest.pm
+t/lib/DBICTest/Schema.pm
+t/lib/DBICTest/Schema/Artist.pm
+t/lib/DBICTest/Schema/CD.pm
+t/lib/DBICTest/Schema/Track.pm
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..31755bf
--- /dev/null
@@ -0,0 +1,9 @@
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+     NAME          => 'DBIx::Class::Journal',
+     VERSION_FROM  => 'lib/DBIx/Class/Schema/Journal.pm',
+     PREREQ_PM     => { 'DBIx::Class'           => 0.08,
+                        'DBD::SQLite'           => 0.12,
+                    },
+);
index 493837d..f1a8a14 100644 (file)
@@ -11,6 +11,8 @@ __PACKAGE__->mk_classdata('journal_sources'); ## [ source names ]
 __PACKAGE__->mk_classdata('journal_user'); ## [ class, field for user id ]
 __PACKAGE__->mk_classdata('_journal_schema');
 
+our $VERSION = '0.01';
+
 sub throw_exception
 {
 }