aboutsummaryrefslogtreecommitdiff
path: root/extensions/Dashboard/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/Dashboard/Config.pm')
-rw-r--r--extensions/Dashboard/Config.pm35
1 files changed, 35 insertions, 0 deletions
diff --git a/extensions/Dashboard/Config.pm b/extensions/Dashboard/Config.pm
new file mode 100644
index 0000000..c89f84c
--- /dev/null
+++ b/extensions/Dashboard/Config.pm
@@ -0,0 +1,35 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# The Initial Developer of the Original Code is "Nokia Corporation"
+# Portions created by the Initial Developer are Copyright (C) 2010 the
+# Initial Developer. All Rights Reserved.
+#
+# Contributor(s):
+# Jari Savolainen <ext-jari.a.savolainen@nokia.com>
+# Stephen Jayna <ext-stephen.jayna@nokia.com>
+
+package Bugzilla::Extension::Dashboard;
+use strict;
+
+use constant NAME => 'Dashboard';
+
+use constant REQUIRED_MODULES => [
+ {
+ package => 'HTML-Scrubber',
+ module => 'HTML::Scrubber',
+ version => 0.08,
+ },
+ {
+ package => 'XML-Feed',
+ module => 'XML::Feed',
+ version => 0.40,
+ },
+];
+
+use constant OPTIONAL_MODULES => [];
+
+__PACKAGE__->NAME;