view release on metacpan or search on metacpan
inc/Module/Install/Metadata.pm view on Meta::CPAN
}
sub write_mymeta_json {
my $self = shift;
# We need JSON to write the MYMETA.json file
unless ( eval { require JSON; 1; } ) {
return 1;
}
# Generate the data
my $meta = $self->_write_mymeta_data or return 1;
# Save as the MYMETA.yml file
print "Writing MYMETA.json\n";
Module::Install::_write(
'MYMETA.json',
JSON->new->pretty(1)->canonical->encode($meta),
);
}
sub _write_mymeta_data {
my $self = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
MANIFEST
README
t/001_load.t
Todo
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
t/boilerplate.t
t/manifest.t
t/pod-coverage.t
t/pod.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
MANIFEST This list of files
Pokus1.pm.PL
Pokus2.pm.PL
t/compile.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
"url" : "git://github.com/bennie/perl-Acme-KeyboardMarathon.git",
"web" : "http://github.com/bennie/perl-Acme-KeyboardMarathon"
}
},
"version" : "1.27",
"x_serialization_backend" : "JSON::PP version 4.04"
}
view all matches for this distribution
view release on metacpan or search on metacpan
}
}
},
"release_status" : "stable",
"version" : "0.02",
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0227"
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/pod-spell.t view on Meta::CPAN
add_stopwords(qw(
Jozef Kutej
OFC
API
JSON
TBD
html
RT
CPAN
AnnoCPAN
view all matches for this distribution
view release on metacpan or search on metacpan
"version" : "0.04",
"x_contributors" : [
"Thibault DUPONCHELLE <thibault.duponchelle@amadeus.com>",
"thibaultduponchelle <580360+thibaultduponchelle@users.noreply.github.com>"
],
"x_serialization_backend" : "JSON::PP version 2.27400_02",
"x_static_install" : 1
}
view all matches for this distribution
view release on metacpan or search on metacpan
"class" : "Dist::Zilla::Plugin::IfBuilt",
"name" : "@Author::PERLANCAR/IfBuilt",
"version" : "0.03"
},
{
"class" : "Dist::Zilla::Plugin::MetaJSON",
"name" : "@Author::PERLANCAR/MetaJSON",
"version" : "6.008"
},
{
"class" : "Dist::Zilla::Plugin::MetaConfig",
"name" : "@Author::PERLANCAR/MetaConfig",
},
"version" : "6.008"
}
},
"x_authority" : "cpan:PERLANCAR",
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0217"
}
view all matches for this distribution
view release on metacpan or search on metacpan
"class" : "Dist::Zilla::Plugin::MetaConfig",
"name" : "@RJBS/MetaConfig",
"version" : "6.029"
},
{
"class" : "Dist::Zilla::Plugin::MetaJSON",
"name" : "@RJBS/MetaJSON",
"version" : "6.029"
},
{
"class" : "Dist::Zilla::Plugin::NextRelease",
"name" : "@RJBS/NextRelease",
"x_contributors" : [
"Ricardo Signes <rjbs@semiotic.systems>"
],
"x_generated_by_perl" : "v5.37.2",
"x_rjbs_perl_window" : "no-mercy",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.30",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
}
view all matches for this distribution
view release on metacpan or search on metacpan
"url" : "git://github.com/gugod/Acme-Lingua-ZH-Remix.git",
"web" : "https://github.com/gugod/Acme-Lingua-ZH-Remix"
}
},
"version" : "0.99",
"x_serialization_backend" : "JSON::PP version 2.97001",
"x_static_install" : 1
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/00-load.t
t/carcdr.t
t/pod-coverage.t
t/pod.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
SIGNATURE Public-key signature (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
0.008 2025-01-09 19:59:59Z
- various toolchain updates, now using Dist::Zilla again.
0.007 2018-09-02 21:00:36Z
- switch from JSON to JSON::PP
- many fixes to build infrastructure to keep pace with changes to
the tooling ecosystem
0.006 2013-11-29 18:22:26Z
- Acme::ಠ_ಠis back, with a lot of convoluted hoop-jumping to bypass
view all matches for this distribution
view release on metacpan or search on metacpan
t/00-load.t
t/readonly.t
t/tee.t
t/wtf.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MCP.pm view on Meta::CPAN
use v5.42;
use feature 'class';
no warnings 'experimental::class';
#
class Acme::MCP v1.0.1 {
use JSON::PP;
use Carp qw[carp croak];
#
field $name : param : reader : writer = 'Generic MCP Server';
field $version : param : reader : writer = '1.0.0';
field %tools : reader;
field $json = JSON::PP->new->utf8(1);
#
method add_tool (%params) {
my $name = $params{name} or croak 'Tool name required';
my $code = $params{code} or croak 'Tool code (sub) required';
$tools{$name}
lib/Acme/MCP.pm view on Meta::CPAN
my $method = $req->{method} // '';
if ( $method eq 'initialize' ) {
$self->_send_response(
$id,
{ protocolVersion => '2024-11-05',
capabilities => { tools => { listChanged => JSON::PP::true }, },
serverInfo => { name => $name, version => $version }
}
);
}
elsif ( $method eq 'tools/list' ) {
lib/Acme/MCP.pm view on Meta::CPAN
method _send_tool_result ( $id, $content, $is_error = 0 ) {
$self->_send_response(
$id,
{ content => [ { type => 'text', text => ref($content) ? $json->encode($content) : $content } ],
isError => $is_error ? JSON::PP::true : JSON::PP::false
}
);
}
method _send_error ( $id, $code, $message ) {
view all matches for this distribution
view release on metacpan or search on metacpan
utils/wgl_ext.txt
vertex.arb
vertex.cg
vertex.glsl
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
t/00-load.t
t/manifest.t
t/pod-coverage.t
t/pod.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MUDLike.pm view on Meta::CPAN
return jQuery.get(url, data, callback, type, 1);
},
getScript: function( url, callback ) {
return jQuery.get(url, null, callback, "script");
},
getJSON: function( url, data, callback ) {
return jQuery.get(url, data, callback, "json");
},
post: function( url, data, callback, type ) {
if ( jQuery.isFunction( data ) ) {
callback = data;
lib/Acme/MUDLike.pm view on Meta::CPAN
// If the type is "script", eval it in global context
if ( type == "script" )
jQuery.globalEval( data );
// Get the JavaScript object, if JSON is used.
if ( type == "json" )
eval( "data = " + data );
// evaluate scripts within html
if ( type == "html" )
view all matches for this distribution
view release on metacpan or search on metacpan
"license" : [
"http://opensource.org/licenses/artistic-license-2.0.php"
]
},
"version" : "v1.00.1",
"x_serialization_backend" : "JSON::PP version 2.27400"
}
view all matches for this distribution
view release on metacpan or search on metacpan
"x_contributors" : [
"AnaTofuZ <e155730@ie.u-ryukyu.ac.jp>",
"Takahiro SHIMIZU <anatofuz@gmail.com>",
"papix <mail@papix.net>"
],
"x_serialization_backend" : "JSON::PP version 2.27400_02",
"x_static_install" : 1
}
view all matches for this distribution
view release on metacpan or search on metacpan
copyright_year = 2015
version = 1.004001
[@Basic]
[MetaJSON]
[@Git]
allow_dirty = Changes
allow_dirty = dist.ini
allow_dirty = README.mkdn
view all matches for this distribution
view release on metacpan or search on metacpan
huge.png
IMAGES.pod
ANOTHER.md
MarkdownTest.md
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
"web" : "https://github.com/neilb/Acme-MarkdownTest"
}
},
"version" : "0.02",
"x_generated_by_perl" : "v5.28.2",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.27",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
}
view all matches for this distribution
view release on metacpan or search on metacpan
"web" : "https://github.com/tobyink/p5-acme-marvel-cinematicuniverse-characters"
},
"x_identifier" : "http://purl.org/NET/cpan-uri/dist/Acme-Marvel-CinematicUniverse-Characters/project"
},
"version" : "0.004",
"x_serialization_backend" : "JSON::PP version 4.16"
}
view all matches for this distribution
view release on metacpan or search on metacpan
"license" : [
"http://www.perlfoundation.org/artistic_license_2_0"
]
},
"version" : "0.01",
"x_serialization_backend" : "JSON::PP version 2.27300"
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/Math/XS/LeanDist.pm
Makefile.PL
MANIFEST
t/basic.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
LeanDist.xs
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/Matrix/Cmd.pm view on Meta::CPAN
package Acme::Matrix::Cmd;
use Rope::Cmd;
use Coerce::Types::Standard qw/Int Bool JSON/;
use Acme::Matrix;
use Ascii::Text;
colors (
title => 'bright_green',
lib/Acme/Matrix/Cmd.pm view on Meta::CPAN
option_alias => 's',
value => 2
);
option words => (
type => JSON->by('decode'),
coerce_type => 1,
description => 'words to use in the matrix rain',
option_alias => 'w'
);
option chars => (
type => JSON->by('decode'),
coerce_type => 1,
description => 'chars to use in the matrix rain',
option_alias => 'c'
);
view all matches for this distribution
view release on metacpan or search on metacpan
"class" : "Dist::Zilla::Plugin::IfBuilt",
"name" : "@Author::PERLANCAR/IfBuilt",
"version" : "0.02"
},
{
"class" : "Dist::Zilla::Plugin::MetaJSON",
"name" : "@Author::PERLANCAR/MetaJSON",
"version" : "6.028"
},
{
"class" : "Dist::Zilla::Plugin::MetaConfig",
"name" : "@Author::PERLANCAR/MetaConfig",
"version" : "6.028"
}
},
"x_authority" : "cpan:PERLANCAR",
"x_generated_by_perl" : "v5.34.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.26",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later",
"x_static_install" : 1
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MetaSyntactic/pause_id.pm view on Meta::CPAN
JSMYSER
JSN
JSNBY
JSOBRIER
JSOFFIAN
JSONNENB
JSOVERSON
JSPEAKS
JSPICAK
JSTEBENS
JSTELZER
view all matches for this distribution
view release on metacpan or search on metacpan
"Vahe Sarkissian",
"Xavier Caron",
"Yanick Champoux"
],
"x_generated_by_perl" : "v5.28.1",
"x_serialization_backend" : "JSON::XS version 3.04"
}
view all matches for this distribution