NAME

YAPC::Russia - Perl conference YAPC::Russia

VERSION

version 1.1.1

DESCRIPTION

Here is a simple object that gives data about Perl conference YAPC::Russia.

Several links about YAPC::Russia 2014:

http://event.yapcrussia.org/yr2014/

https://www.facebook.com/events/317682595047028/

https://vk.com/yapcrussia2014

Module YAPC::Russia uses Semantic Versioning standart for version numbers. Please visit http://semver.org/ to find out all about this great thing.

METHODS

new

my $yr = YAPC::Russia->new(
    year => 2014,
);

get_dates

Returns list of Class::Date objects with dates of the YAPC::Russia event.

$yr->get_dates();

For the year 2014 it will return objects with dates:

2014-06-13
2014-06-14

get_place

Returns hashref with data about place where YAPC::Russia is held.

$yr->get_place();

For the year 2014 it will return:

{
    city => 'Saint Petersburg',
    name_ru => 'Место Роста',
    address_ru => 'Курляндская, дом 5',
    site => 'http://mestorosta.biz',
    phone => '+7 812 648-13-81',
    foursquare => 'https://foursquare.com/v/%D0%BC%D0%B5%D1%81%D1%82%D0%BE-%D1%80%D0%BE%D1%81%D1%82%D0%B0/50fe895ce4b0382948fd8148',
}

AUTHOR

Ivan Bessarabov <ivan@bessarabov.ru>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Ivan Bessarabov.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.