The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

YAPC::Russia - Perl conference YAPC::Russia

VERSION

version 4.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 => 2016,
);

get_dates

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

$yr->get_dates();

For the year 2016 it will return objects with dates:

2016-06-25

get_place

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

$yr->get_place();

For the year 2016 it will return:

{
    city => 'Moscow',
    name_ru => 'Mail.ru',
    address_ru => 'Ленинградский проспект 39, стр. 79',
    foursquare => 'https://foursquare.com/v/mailru-hq/4b980acdf964a520532835e3',
}

is_live

Returns true value if today is the day of the the the selected YAPC::Russian conference.

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.