Update README and copyright notices
[gruntmaster-data.git] / lib / Gruntmaster / App.pm
CommitLineData
92f74061
MG
1package Gruntmaster::App;
2
3use 5.014000;
4use warnings;
5
6our $VERSION = '5999.000_004';
7
8use App::Cmd::Setup '-app';
9use Gruntmaster::Data;
10
11sub allow_any_unambiguous_abbrev () { 1 }
12sub default_command { 'commands' } # Show usage when called without arguments
13
14sub global_opt_spec {
15 (['table' => 'hidden', {one_of => [
16 ['contests|ct|c' => 'Act on contests'],
17 ['jobs|j' => 'Act on jobs'],
18 ['problems|pb|p' => 'Act on problems'],
19 ['users|us|u' => 'Act on users']]}])
20}
21
22sub table { shift->global_options->{table} }
23
6fb81f9a 24dbinit $ENV{GRUNTMASTER_DSN} // 'dbi:Pg:';
92f74061
MG
25
261;
27__END__
28
29=encoding utf-8
30
31=head1 NAME
32
33Gruntmaster::App - command-line interface to the Gruntmaster 6000 database
34
35=head1 SYNOPSIS
36
63afa40a
MG
37 use Gruntmaster::App;
38 Gruntmaster::App->run;
92f74061
MG
39
40=head1 DESCRIPTION
41
63afa40a
MG
42Gruntmaster::App is a command-line interface to the Gruntmaster 6000
43database. It is the backend of the B<gm> script.
44
45=head1 SEE ALSO
46
47L<gm>
48
49=head1 AUTHOR
50
51Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
52
53=head1 COPYRIGHT AND LICENSE
54
e1b9f3dd 55Copyright (C) 2014-2015 by Marius Gavrilescu
63afa40a
MG
56
57This library is free software; you can redistribute it and/or modify
58it under the same terms as Perl itself, either Perl version 5.20.1 or,
59at your option, any later version of Perl 5 you may have available.
92f74061
MG
60
61
62=cut
This page took 0.013598 seconds and 4 git commands to generate.