Work in progress on compiler. It's blowing up right now.
[gitmo/MooseX-Compiler.git] / lib / MooseX / Compiler / FakeMoose.pm
diff --git a/lib/MooseX/Compiler/FakeMoose.pm b/lib/MooseX/Compiler/FakeMoose.pm
new file mode 100644 (file)
index 0000000..f956f79
--- /dev/null
@@ -0,0 +1,23 @@
+package MooseX::Compiler::FakeMoose;
+
+use strict;
+use warnings;
+
+use Exporter qw( import );
+
+our @EXPORT = qw(
+    extends
+    has
+    meta
+    with
+);
+
+sub extends { }
+sub has     { }
+sub with    { }
+
+sub meta {
+    die 'meta() is not implemented yet';
+}
+
+1;