Org-To-VCF

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "strict" : "0",
            "vars" : "0"
         }
      },
      "test" : {
         "requires" : {
            "File::Spec" : "0",
            "FindBin" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "Test::Differences" : "0",
            "Test::More" : "0.98",
            "lib" : "0",
            "warnings" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://rt.cpan.org/Public/Dist/Display.html?Name=Org-To-VCF"

META.yml  view on Meta::CPAN

---
abstract: 'Export contacts in Org document to VCF (vCard addressbook)'
author:
  - 'perlancar <perlancar@cpan.org>'
build_requires:
  File::Spec: '0'
  FindBin: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Test::Differences: '0'
  Test::More: '0.98'
  lib: '0'
  warnings: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

Makefile.PL  view on Meta::CPAN

    "Text::vCard::Addressbook" => "3.06",
    "experimental" => 0,
    "strict" => 0,
    "vars" => 0
  },
  "TEST_REQUIRES" => {
    "File::Spec" => 0,
    "FindBin" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Test::Differences" => 0,
    "Test::More" => "0.98",
    "lib" => 0,
    "warnings" => 0
  },
  "VERSION" => "0.09",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

Makefile.PL  view on Meta::CPAN

  "Log::ger" => "0.011",
  "Moo" => 0,
  "Number::Phone::CountryCode" => 0,
  "Org::Document" => "0.18",
  "Org::Dump" => "0.18",
  "Org::To::Base" => "0.10",
  "Perinci::CmdLine::Any" => 0,
  "Perinci::CmdLine::Base" => "1.75",
  "Scalar::Util" => 0,
  "String::Escape" => 0,
  "Test::Differences" => 0,
  "Test::More" => "0.98",
  "Text::vCard::Addressbook" => "3.06",
  "experimental" => 0,
  "lib" => 0,
  "strict" => 0,
  "vars" => 0,
  "warnings" => 0
);


dist.ini  view on Meta::CPAN

[GenPericmdScript/GenPericmdScript::org_to_vcf]
url=/Org/To/VCF/org_to_vcf

[@Author::PERLANCAR]

:version=0.58
[Prereqs / TestRequires]
lib=0
warnings=0
FindBin=0
Test::Differences=0
Test::More=0.98

[Prereqs]
perl=5.010001
experimental=0
strict=0
vars=0
Exporter=0
File::Slurper=0
Log::ger=0.011

t/testlib.pl  view on Meta::CPAN

#!perl

use 5.010;
use strict;
use warnings;

use Org::To::VCF qw(org_to_vcf);
use Test::Differences;
use Test::More 0.98;

sub test_to_vcf {
    my %args = @_;

    subtest $args{name} => sub {
        my $res;
        eval {
            $res = org_to_vcf(%{$args{args}});
        };



( run in 1.167 second using v1.01-cache-2.11-cpan-131fc08a04b )