view release on metacpan or search on metacpan
SQL::Abstract = 1.83
SQL::Translator = 0.11018
[EnsurePrereqsInstalled]
:version = 0.003
type = requires
type = recommends
[GitHub::Meta]
repo = git://github.com/robrwo/DBIx-Class-Helper-SimpleStats.git
view all matches for this distribution
view release on metacpan or search on metacpan
remove = feature
remove = parent
[EnsurePrereqsInstalled]
:version = 0.003
type = requires
type = recommends
[GitHub::Meta]
repo = git://github.com/robrwo/DBIX-Class-Helper-TableSample.git
view all matches for this distribution
view release on metacpan or search on metacpan
remove = Test::Roo
remove = Test::Roo::Role
[EnsurePrereqsInstalled]
:version = 0.003
type = requires
type = recommends
[GitHub::Meta]
repo = git://github.com/robrwo/DBIx-Class-Helper-ResultSet-WindowFunctions.git
view all matches for this distribution
view release on metacpan or search on metacpan
; version_rel_day = 17
; version_rel_hour = 15
; version_rel_time_zone = Pacific/Auckland
; auto_prereqs_skip = File::Find
-phase = develop
-relationship = requires
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes = 0.004002
Dist::Zilla::Plugin::Author::KENTNL::TravisCI = 0.001002
Dist::Zilla::Plugin::Authority = 1.006
Dist::Zilla::Plugin::AutoPrereqs = 0
Dist::Zilla::Plugin::BumpVersionAfterRelease = 0
view all matches for this distribution
view release on metacpan or search on metacpan
[RemovePrereqs::Provided / @Author::KENTNL/RemovePrereqs::Provided]
[Prereqs / @Author::KENTNL/::Role::BundleDeps]
; auto_prereqs_skip = File::Find
-phase = develop
-relationship = requires
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes = 0.004002
Dist::Zilla::Plugin::Author::KENTNL::TravisCI = 0.001002
Dist::Zilla::Plugin::Authority = 1.006
Dist::Zilla::Plugin::AutoPrereqs = 0
Dist::Zilla::Plugin::BumpVersionAfterRelease = 0
view all matches for this distribution
view release on metacpan or search on metacpan
t/01_crud.t view on Meta::CPAN
use strict;
use Test::More qw/ no_plan /;
use Test::Requires qw/ DBD::SQLite /;
BEGIN { use_ok 'DBIx::CouchLike' }
my $dbh = require 't/connect.pl';
ok $dbh;
my $couch = DBIx::CouchLike->new({ dbh => $dbh, table => "foo" });
isa_ok $couch => "DBIx::CouchLike";
ok $couch->can('dbh');
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DR/TarantoolQueue.pm view on Meta::CPAN
box.cfg{ listen = os.getenv('PRIMARY_PORT') }
box.schema.user.create('test', { password = 'test' })
box.schema.user.grant('test', 'read,write,execute', 'universe')
_G.queue = require('megaqueue')
queue:init()
log.info('Fake Queue started')
=head2 msgpack (ro)
view all matches for this distribution
view release on metacpan or search on metacpan
t/010-comon/lua/run.lua view on Meta::CPAN
print(os.getenv('PRIMARY_PORT'))
local box = require 'box';
box.cfg{ listen = os.getenv('PRIMARY_PORT') }
view all matches for this distribution
view release on metacpan or search on metacpan
$dt = $class->SUPER::new(@_);
}
elsif ( not ref $_[0] ) {
# May be ISO8601(ish) format used by PostgreSQL
$dt = eval {
$HAVE_PG || ($HAVE_PG = require DateTime::Format::Pg);
DateTime::Format::Pg->parse_datetime($_[0]);
};
# May be a real ISO8601 format date/time
sub unix_time { $_[0]->epoch }
sub pg_timestamp_notz {
Carp::croak("DateTime::Format::Pg is not installed")
unless $HAVE_PG || ($HAVE_PG = require DateTime::Format::Pg);
return DateTime::Format::Pg->format_timestamp_without_time_zone($_[0]);
}
sub pg_timestamp_tz {
Carp::croak("DateTime::Format::Pg is not installed")
unless $HAVE_PG || ($HAVE_PG = require DateTime::Format::Pg);
return DateTime::Format::Pg->format_timestamptz($_[0]);
}
{
view all matches for this distribution
view release on metacpan or search on metacpan
xt/example.t view on Meta::CPAN
eval "use YAML::XS; 1" or plan skip_all => "YAML::XS needed for this test";
plan tests => 3;
$ENV{DANCER_APPHANDLER} = 'PSGI';
ok( my $app = require "$FindBin::Bin/../example/my_app.pl" );
my $test = Plack::Test->create($app);
my $res = $test->request( GET '/api/welcome' );
like $res->content => qr/hello.+world/i;
view all matches for this distribution
view release on metacpan or search on metacpan
share/assets/dash_core_components/async~datepicker.js.map view on Meta::CPAN
{"version":3,"sources":["webpack:///./node_modules/moment/moment.js","webpack:///./node_modules/react-dates/lib/constants.js","webpack:///./node_modules/airbnb-prop-types/index.js","webpack:///./node_modules/react-dates/lib/defaultPhrases.js","webpac...
view all matches for this distribution
view release on metacpan or search on metacpan
AutoMetaResources.bugtracker.rt = 0
Authority.authority = cpan:VOVKASM
[Prereqs / ConfigurePrereqs]
-phase = configure
-relationship = requires
ExtUtils::CBuilder = 0
File::Spec = 0
[=inc::DistMakeMaker]
view all matches for this distribution
view release on metacpan or search on metacpan
hax/make_argcheck_ops.c.inc view on Meta::CPAN
#endif
#define make_argcheck_ops(required, optional, slurpy, subname) S_make_argcheck_ops(aTHX_ required, optional, slurpy, subname)
static OP *S_make_argcheck_ops(pTHX_ int required, int optional, char slurpy, SV *subname)
{
int params = required + optional;
#ifdef HAVE_OP_ARGCHECK
UNOP_AUX_item *aux = make_argcheck_aux(params, optional, slurpy);
return op_prepend_elem(OP_LINESEQ, newSTATEOP(0, NULL, NULL),
hax/make_argcheck_ops.c.inc view on Meta::CPAN
OP *ret = NULL;
if(required > 0) {
SV *message = newSVpvf("Too few arguments for subroutine '%" SVf "'", subname);
/* @_ >= required or die ... */
OP *checkop =
newSTATEOP(0, NULL,
newLOGOP(OP_OR, 0,
newBINOP(OP_GE, 0,
/* scalar @_ */
view all matches for this distribution
view release on metacpan or search on metacpan
t/01-require.t view on Meta::CPAN
use warnings;
use Test::More;
my $rules = require Data::Compare::Plugins::JSON;
is ref($rules), 'ARRAY';
foreach (@$rules) {
is ref($_), 'ARRAY' or next;
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
But, it's more interesting than that. You can load it with C<require>
and call C<arguments> to get the data structure it passes to
C<WriteMakefile>:
my $package = require '/path/to/Makefile.PL';
my $arguments = $package->arguments;
Note that C<require>-ing a file makes an entry in C<%INC> for exactly
that name. If you try to C<require> another file with the same name,
even from a different path, C<require> thinks it has already loaded
view all matches for this distribution
view release on metacpan or search on metacpan
[RecommendedPrereqs]
[AutoPrereqs]
[Prereqs / BuildRequires ]
-phase = build
-relationship = requires
ExtUtils::MakeMaker = 7.22
Module::Metadata = 1.000015
[Prereqs / DevelopRequires ]
-phase = develop
-relationship = requires
Test::CVE = 0.08
[EnsurePrereqsInstalled]
:version = 0.003
type = requires
type = recommends
[GitHub::Meta]
repo = git://github.com/robrwo/perl-Data-Enum.git
view all matches for this distribution
view release on metacpan or search on metacpan
;version_rel_month = 8
;version_rel_day = 29
;version_rel_hour = 0
;version_rel_time_zone = Pacific/Auckland
-phase = develop
-relationship = requires
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes = 0.004002
Dist::Zilla::Plugin::Author::KENTNL::TravisCI = 0.001002
Dist::Zilla::Plugin::Authority = 1.006
Dist::Zilla::Plugin::AutoPrereqs = 0
Dist::Zilla::Plugin::BumpVersionAfterRelease = 0
view all matches for this distribution
view release on metacpan or search on metacpan
t/JSON-Schema-Test-Suite/index.js view on Meta::CPAN
'use strict';
const Ajv = require('ajv');
const jsonSchemaTest = require('json-schema-test');
const assert = require('assert');
const refs = {
'http://localhost:1234/integer.json': require('./remotes/integer.json'),
'http://localhost:1234/subSchemas.json': require('./remotes/subSchemas.json'),
'http://localhost:1234/folder/folderInteger.json': require('./remotes/folder/folderInteger.json'),
view all matches for this distribution
view release on metacpan or search on metacpan
[Prereqs / TestRequires]
[EnsurePrereqsInstalled]
:version = 0.003
type = requires
type = recommends
[GitHub::Meta]
repo = git://github.com/robrwo/Data-Pageset-Exponential.git
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/TUID/BestUUID.pm view on Meta::CPAN
our ( %loaded, %skip );
BEGIN {
eval {
$loaded{LibUUID} = require Data::UUID::LibUUID;
1;
} unless $skip{LibUUID};
eval {
$loaded{DataUUID} = require Data::UUID;
1;
} unless $skip{DataUUID};
}
sub new_uuid {
view all matches for this distribution
view release on metacpan or search on metacpan
[Prereqs / DevelopRequires]
Pod::Weaver::Section::Contributors = 0
Pod::Elemental::Transformer::List = 0
[DynamicPrereqs]
-condition = "$]" < '5.010'
-body = requires('MRO::Compat');
[Manifest]
[MetaYAML]
[MetaJSON]
[UploadToCPAN]
view all matches for this distribution
view release on metacpan or search on metacpan
t/Tests/Data/TreeValidator/Constraints.t view on Meta::CPAN
use MooseX::Types::Moose qw/Num HashRef/;
use Data::TreeValidator::Constraints qw( required length options type );
test '"required" constraint' => sub {
my $constraint = required;
ok(!exception { $constraint->('Some input') },
'non-empty string passes required constraint');
ok(exception { $constraint->(undef) },
'constraint does not allow undef input');
view all matches for this distribution
view release on metacpan or search on metacpan
[Prereqs / @Author::KENTNL/::Role::BundleDeps]
; twitter_extra_hash_tags =
; auto_prereqs_skip = File::Find
-phase = develop
-relationship = requires
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes = 0.001001
Dist::Zilla::Plugin::Authority = 1.006
Dist::Zilla::Plugin::AutoPrereqs = 0
Dist::Zilla::Plugin::BumpVersionAfterRelease = 0
Dist::Zilla::Plugin::ConfirmRelease = 0
view all matches for this distribution
view release on metacpan or search on metacpan
utils/create_gold view on Meta::CPAN
if ($pid) {
waitpid $pid, 0;
} else {
no warnings "redefine";
local *Devel::Cover::Test::run_test = sub { };
my $t = require "./$file" or die "Can't require $file: $!";
$t->create_gold && print STDERR "\n";
exit;
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
[Prereqs / @Author::KENTNL/::Role::BundleDeps]
; twitter_extra_hash_tags =
; auto_prereqs_skip = File::Find
-phase = develop
-relationship = requires
Dist::Zilla::Plugin::Author::KENTNL::CONTRIBUTING = 0.001003
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes = 0.004002
Dist::Zilla::Plugin::Author::KENTNL::TravisCI = 0.001002
Dist::Zilla::Plugin::Authority = 1.006
Dist::Zilla::Plugin::AutoPrereqs = 0
view all matches for this distribution
view release on metacpan or search on metacpan
; authordep ExtUtils::HasCompiler = 0.023
[DynamicPrereqs]
-condition = !want_pp()
-condition = can_xs()
-body = requires('Sub::Util', '1.40')
[MetaJSON]
[MetaResources]
[Repository]
[Bugtracker]
view all matches for this distribution
view release on metacpan or search on metacpan
share/htdocs/d3.layout.cloud.js view on Meta::CPAN
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}...
// Word cloud layout by Jason Davies, https://www.jasondavies.com/wordcloud/
// Algorithm due to Jonathan Feinberg, http://static.mrfeinberg.com/bv_ch03.pdf
var dispatch = require("d3-dispatch").dispatch;
var cloudRadians = Math.PI / 180,
cw = 1 << 11 >> 5,
ch = 1 << 11;
view all matches for this distribution
view release on metacpan or search on metacpan
DiaColloDB/Compat.pm view on Meta::CPAN
my $pkg = shift;
(my $file = $pkg) =~ s{::}{/}g;
$file .= ".pm" if ($file !~ /\.pm$/);
$file = "DiaColloDB/Compat/$file" if ($file !~ m{^DiaColloDB/Compat/});
my ($rc);
eval { $rc = require $file };
$that->logconfess("failed to load compatibility package $pkg".($@ ? ": $@" : '')) if ($@ || !$rc);
return $rc;
}
## \&dummyMethodCode = $that->nocompat($methodName)
view all matches for this distribution
view release on metacpan or search on metacpan
[RemovePrereqs::Provided / @Author::KENTNL/RemovePrereqs::Provided]
[Prereqs / @Author::KENTNL/::Role::BundleDeps]
; auto_prereqs_skip = File::Find
-phase = develop
-relationship = requires
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes = 0.004002
Dist::Zilla::Plugin::Author::KENTNL::TravisCI = 0.001002
Dist::Zilla::Plugin::Authority = 1.006
Dist::Zilla::Plugin::AutoPrereqs = 0
Dist::Zilla::Plugin::BumpVersionAfterRelease = 0
view all matches for this distribution
view release on metacpan or search on metacpan
modules = Dist::Zilla::App::Command::bakeini
[Prereqs / @Author::KENTNL/::Role::BundleDeps]
; auto_prereqs_skip = File::Find
-phase = develop
-relationship = requires
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes = 0.004002
Dist::Zilla::Plugin::Author::KENTNL::TravisCI = 0.001002
Dist::Zilla::Plugin::Authority = 1.006
Dist::Zilla::Plugin::AutoPrereqs = 0
Dist::Zilla::Plugin::BumpVersionAfterRelease = 0
view all matches for this distribution