Astro-MoonPhase-Simple

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Geo::Location::TimeZone" : "0",
            "Getopt::Long" : "0",
            "perl" : "5.006"
         }
      },
      "test" : {
         "requires" : {
            "Config" : "0",
            "FindBin" : "0",
            "Test::More" : "0",
            "Try::Tiny" : "0"
         }
      }
   },
   "release_status" : "stable",
   "version" : "0.03",
   "x_serialization_backend" : "JSON::PP version 4.16"
}

META.yml  view on Meta::CPAN

---
abstract: 'Calculate the phase of the Moon on a given time without too much blah blah'
author:
  - 'Andreas Hadjiprocopis <bliako@cpan.org>'
build_requires:
  Config: '0'
  ExtUtils::MakeMaker: '0'
  FindBin: '0'
  Test::More: '0'
  Try::Tiny: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter version 2.150010'
license: artistic_2
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Astro-MoonPhase-Simple
no_index:

Makefile.PL  view on Meta::CPAN

    LICENSE          => 'artistic_2',
    MIN_PERL_VERSION => '5.006',
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '0',
    },
    EXE_FILES => [
        'script/moon-phase-calculator.pl'
    ],
    TEST_REQUIRES => {
        'Test::More' => '0',
	'Try::Tiny' => '0',
	'FindBin' => '0',
	'Config' => '0',
    },
    PREREQ_PM => {
	'DateTime' => '0',
	'DateTime::Format::ISO8601' => '0',
	'DateTime::TimeZone' => '0',
	'Geo::Location::TimeZone' => '0',
	'Astro::MoonPhase' => '0',
	'Exporter' => '0',

t/050-exports.t  view on Meta::CPAN

#!/usr/bin/env perl

use strict;
use warnings;

our $VERSION = '0.03';

use Test::More;
use Try::Tiny;

use FindBin;

use lib ($FindBin::Bin, 'blib/lib');

use Astro::MoonPhase::Simple;

#####
# check those subs exported by default
#####



( run in 0.295 second using v1.01-cache-2.11-cpan-05444aca049 )