#!/usr/bin/perl -w

use strict;
use PM::Lisbon;

our $blog               = 'http://lisbon.pm.org/blog';

our $ics_calendar       = 'webcal://icalx.com/public/cog/perl.community.ics';

our $slides             = 'http://lisbon.pm.org/slides';

our $mailing_list       = {
                            'address'            => 'perl@lisbon.pm.org',
                            'subscribe'          => 'perl-subscribe@lisbon.pm.org',
                          };

our $announcements_list = {
                            'address'            => 'eventos@lisbon.pm.org',
                            'subscribe'          => 'eventos-subscribe@lisbon.pm.org',
                          };

our $leader             = {
                            'name'               => 'José Castro',
                            'email'              => 'cog@cpan.org',
                          };

our $statistics         = {
                            'members'            => 126,   # and counting
                            'mails_per_month'    => 225,
                            'socials_per_month'  => 1,
                            'techs_per_month'    => 0.25,
                            'girls_on_the_group' => 6,
                            'girls_ratio'        => 0.05,
                          };

our @social_meetings    = map { first _thursday } @months;
our $social_location    = 'Saloio na 24 de Julho' # more info on the mailing list

our @tech_meetings      = ( 'Randomly Scheduled' ); # check the blog or the mailing lists

__END__