Calendar-Dates-FRM

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

{
   "abstract" : "FRM exam calendar",
   "author" : [
      "perlancar <perlancar@cpan.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",

META.yml  view on Meta::CPAN

---
abstract: 'FRM exam calendar'
author:
  - 'perlancar <perlancar@cpan.org>'
build_requires:
  File::Spec: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Test::More: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0

Makefile.PL  view on Meta::CPAN

# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012.
use strict;
use warnings;

use 5.010001;

use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "FRM exam calendar",
  "AUTHOR" => "perlancar <perlancar\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Calendar-Dates-FRM",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.010001",
  "NAME" => "Calendar::Dates::FRM",
  "PREREQ_PM" => {
    "Calendar::DatesRoles::DataPreparer::CalendarVar::FromDATA::Simple" => 0,

README  view on Meta::CPAN

NAME
    Calendar::Dates::FRM - FRM exam calendar

VERSION
    This document describes version 0.008 of Calendar::Dates::FRM (from Perl
    distribution Calendar-Dates-FRM), released on 2020-01-03.

SYNOPSIS
  Using from Perl
     use Calendar::Dates::FRM;
     my $min_year = Calendar::Dates::FRM->get_min_year; # => 2018
     my $max_year = Calendar::Dates::FRM->get_max_year; # => 2020

README  view on Meta::CPAN

       {
         date    => "2020-11-21",
         day     => 21,
         month   => 11,
         summary => "Exam day",
         tags    => ["nov2020exam"],
         year    => 2020,
       },
     ]

  Using from CLI (requires list-calendar-dates and calx)
     % list-calendar-dates -l -m FRM
     % calx -c FRM

DESCRIPTION
    This module provides FRM exam calendar using the Calendar::Dates
    interface.

DATES STATISTICS
     +---------------+-------+
     | key           | value |
     +---------------+-------+
     | Earliest year | 2018  |
     | Latest year   | 2020  |
     +---------------+-------+

README  view on Meta::CPAN

SEE ALSO
    <https://www.garp.org/#!/frm/program-exams>

    <https://en.wikipedia.org/wiki/Financial_risk_management>

    Calendar::Dates

    App::CalendarDatesUtils contains CLIs to list dates from this module,
    etc.

    calx from App::calx can display calendar and highlight dates from
    Calendar::Dates::* modules

AUTHOR
    perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2020, 2019 by perlancar@cpan.org.

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

lib/Calendar/Dates/FRM.pm  view on Meta::CPAN

    if (defined(my $mon = $params->{exam_month})) {
        $mon eq 'may' || $mon eq 'nov' or die "Invalid exam_month, please specify either may/nov";
        return 0 unless grep { /\A$mon/ } @{ $entry->{tags} // [] };
    }
    # exam_level has no effect currently, each exam date is relevant to both
    # levels/parts.
    1;
}

1;
# ABSTRACT: FRM exam calendar

=pod

=encoding UTF-8

=head1 NAME

Calendar::Dates::FRM - FRM exam calendar

=head1 VERSION

This document describes version 0.008 of Calendar::Dates::FRM (from Perl distribution Calendar-Dates-FRM), released on 2020-01-03.

=head1 SYNOPSIS

=head2 Using from Perl

 use Calendar::Dates::FRM;

lib/Calendar/Dates/FRM.pm  view on Meta::CPAN

   {
     date    => "2020-11-21",
     day     => 21,
     month   => 11,
     summary => "Exam day",
     tags    => ["nov2020exam"],
     year    => 2020,
   },
 ]

=head2 Using from CLI (requires L<list-calendar-dates> and L<calx>)

 % list-calendar-dates -l -m FRM
 % calx -c FRM

=head1 DESCRIPTION

This module provides FRM exam calendar using the L<Calendar::Dates> interface.

=head1 DATES STATISTICS

 +---------------+-------+
 | key           | value |
 +---------------+-------+
 | Earliest year | 2018  |
 | Latest year   | 2020  |
 +---------------+-------+

lib/Calendar/Dates/FRM.pm  view on Meta::CPAN

=head1 SEE ALSO

L<https://www.garp.org/#!/frm/program-exams>

L<https://en.wikipedia.org/wiki/Financial_risk_management>

L<Calendar::Dates>

L<App::CalendarDatesUtils> contains CLIs to list dates from this module, etc.

L<calx> from L<App::calx> can display calendar and highlight dates from Calendar::Dates::* modules

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2020, 2019 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under



( run in 0.414 second using v1.01-cache-2.11-cpan-5dc5da66d9d )