NAME
YAPC::Russia - Perl conference YAPC::Russia
VERSION
version 2.0.0
DESCRIPTION
Here is a simple object that gives data about Perl conference YAPC::Russia.
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 => 2015,
);
get_dates
Returns list of Class::Date objects with dates of the YAPC::Russia event.
$yr->get_dates();
For the year 2015 it will return objects with dates:
2015-05-16
2015-05-17
get_place
Returns hashref with data about place where YAPC::Russia is held.
$yr->get_place();
For the year 2015 it will return:
{
city => 'Moscow',
name_ru => 'Mail.ru',
address_ru => 'Ленинградский проспект 39, стр. 79',
foursquare => 'https://foursquare.com/v/mailru-hq/4b980acdf964a520532835e3',
}
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.