Further WIP of integrating rafl's work into Gitalist and moving gitweb into Catalyst.
[catagits/Gitalist.git] / lib / Gitalist.pm
CommitLineData
89de6a33 1package Gitalist;
42fe5d11 2use Moose;
3use namespace::autoclean;
89de6a33 4
5use Catalyst::Runtime 5.80;
6
42fe5d11 7extends 'Catalyst';
89de6a33 8
89de6a33 9use Catalyst qw/-Debug
10 ConfigLoader
11 Static::Simple/;
12our $VERSION = '0.01';
13
4666d5c7 14# Bring in the libified gitweb.cgi.
15use gitweb;
16
d3feefcf 17__PACKAGE__->config(
18 name => 'Gitalist',
19 default_view => 'Default',
20);
89de6a33 21
22# Start the application
23__PACKAGE__->setup();
24
89de6a33 25=head1 NAME
26
27Gitalist - Catalyst based application
28
29=head1 SYNOPSIS
30
31 script/gitalist_server.pl
32
33=head1 DESCRIPTION
34
35[enter your description here]
36
37=head1 SEE ALSO
38
39L<Gitalist::Controller::Root>, L<Catalyst>
40
42fe5d11 41=head1 AUTHORS AND COPYRIGHT
89de6a33 42
42fe5d11 43 Catalyst application:
44 (C) 2009 Venda Ltd and Dan Brook <dbrook@venda.com>
45
46 Original gitweb.cgi from which this was derived:
47 (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
48 (C) 2005, Christian Gierke
89de6a33 49
50=head1 LICENSE
51
42fe5d11 52FIXME - Is this going to be GPLv2 as per gitweb? If so this is broken..
53
89de6a33 54This library is free software. You can redistribute it and/or modify
55it under the same terms as Perl itself.
56
57=cut
58
591;