Sha256: c9f342cfc044df6041478bf38bb4f2fe6c30edd1533fbeadca5aaea234fcfdef
Contents?: true
Size: 743 Bytes
Versions: 2
Compression:
Stored size: 743 Bytes
Contents
use strict; use warnings; package YAML::PP::Schema::Failsafe; our $VERSION = 'v0.38.0'; # VERSION sub register { my ($self, %args) = @_; return; } 1; __END__ =pod =encoding utf-8 =head1 NAME YAML::PP::Schema::Failsafe - YAML 1.2 Failsafe Schema =head1 SYNOPSIS my $yp = YAML::PP->new( schema => ['Failsafe'] ); =head1 DESCRIPTION With this schema, everything will be treated as a string. There are no booleans, integers, floats or undefined values. Here you can see all Schemas and examples implemented by YAML::PP: L<https://perlpunk.github.io/YAML-PP-p5/schemas.html> Official Schema: L<https://yaml.org/spec/1.2/spec.html#id2802346> =head1 METHODS =over =item register Called by YAML::PP::Schema =back =cut
Version data entries
2 entries across 1 versions & 1 rubygems