summaryrefslogtreecommitdiffstats
path: root/lib/Narwhal/Component/Role/Wiki.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-02-17 21:19:47 -0600
committerJesse Luehrs <doy@tozt.net>2011-02-17 21:19:47 -0600
commit3cab815f8bb574d3c2bf9e4f9d627a698674c000 (patch)
tree314ffe5fb86e3fcc05703b106d27c1e5d32fb572 /lib/Narwhal/Component/Role/Wiki.pm
parenta7c37d5489611bf79889dd689abb0ac686d640c9 (diff)
downloadnarwhal-3cab815f8bb574d3c2bf9e4f9d627a698674c000.tar.gz
narwhal-3cab815f8bb574d3c2bf9e4f9d627a698674c000.zip
factor some stuff out into a role
Diffstat (limited to 'lib/Narwhal/Component/Role/Wiki.pm')
-rw-r--r--lib/Narwhal/Component/Role/Wiki.pm31
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/Narwhal/Component/Role/Wiki.pm b/lib/Narwhal/Component/Role/Wiki.pm
new file mode 100644
index 0000000..c57cf7e
--- /dev/null
+++ b/lib/Narwhal/Component/Role/Wiki.pm
@@ -0,0 +1,31 @@
+package Narwhal::Component::Role::Wiki;
+use Moose::Role;
+
+has kioku => (
+ isa => 'KiokuX::Model',
+ required => 1,
+ handles => 'KiokuDB::Role::API',
+);
+
+has tt => (
+ isa => 'Template',
+ required => 1,
+ handles => ['process'],
+);
+
+has scope => (
+ is => 'ro',
+ isa => 'KiokuDB::LiveObjects::Scope',
+ lazy => 1,
+ default => sub { shift->new_scope },
+);
+
+sub BUILD { }
+after BUILD => sub {
+ my $self = shift;
+ $self->scope;
+};
+
+no Moose::Role;
+
+1;