~mkanat/bugzilla-traceparser/trunk

« back to all changes in this revision

Viewing changes to Config.pm

  • Committer: Max Kanat-Alexander
  • Date: 2010-02-08 03:40:24 UTC
  • Revision ID: mkanat@bugzilla.org-20100208034024-2jr17lgakmfuls85
Convert extension code to using the 3.6 extension format.
Currently compiles and passes checksetup.pl, but hasn't been fully tested.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- Mode: perl; indent-tabs-mode: nil -*-
2
 
#
3
1
# The contents of this file are subject to the Mozilla Public
4
2
# License Version 1.1 (the "License"); you may not use this file
5
3
# except in compliance with the License. You may obtain a copy of
10
8
# implied. See the License for the specific language governing
11
9
# rights and limitations under the License.
12
10
#
13
 
# The Original Code is the Bugzilla Traceparser Plugin.
 
11
# The Original Code is the Bugzilla TraceParser Plugin.
14
12
#
15
13
# The Initial Developer of the Original Code is Canonical Ltd.
16
14
# Portions created by Canonical Ltd. are Copyright (C) 2009
19
17
# Contributor(s):
20
18
#   Max Kanat-Alexander <mkanat@bugzilla.org>
21
19
 
22
 
 
 
20
package Bugzilla::Extension::TraceParser;
23
21
use strict;
24
 
use warnings;
25
 
 
 
22
use constant NAME => 'TraceParser';
26
23
use constant REQUIRED_MODULES => [
27
24
    {
28
25
        package => 'Parse-StackTrace',
31
28
    },
32
29
];
33
30
 
34
 
use constant OPTIONAL_MODULES => [
35
 
];
 
31
__PACKAGE__->NAME;