The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 03
META.json 11
META.yml 11
Makefile.PL 11
README 22
lib/YAML/Any.pm 11
lib/YAML/Any.pod 11
lib/YAML/Dumper/Base.pod 11
lib/YAML/Dumper.pod 11
lib/YAML/Error.pod 11
lib/YAML/Loader/Base.pod 11
lib/YAML/Loader.pm 11
lib/YAML/Loader.pod 11
lib/YAML/Marshall.pod 11
lib/YAML/Mo.pm 21
lib/YAML/Node.pod 11
lib/YAML/Tag.pod 11
lib/YAML/Types.pod 11
lib/YAML.pm 11
lib/YAML.pod 33
t/load-tests.t 16
21 files changed (This is a version diff) 2431
@@ -1,3 +1,6 @@
+1.12 Mon Sep 22 08:24:43 PDT 2014
+ - Fix https://rt.cpan.org/Ticket/Display.html?id=97870
+
 1.11 Fri Aug 29 20:08:20 PDT 2014
  - Apply PR/139. @ehuelsmann++
 
@@ -55,6 +55,6 @@
          "web" : "https://github.com/ingydotnet/yaml-pm"
       }
    },
-   "version" : "1.11"
+   "version" : "1.12"
 }
 
@@ -25,4 +25,4 @@ resources:
   bugtracker: https://github.com/ingydotnet/yaml-pm/issues
   homepage: https://github.com/ingydotnet/yaml-pm
   repository: https://github.com/ingydotnet/yaml-pm.git
-version: '1.11'
+version: '1.12'
@@ -23,7 +23,7 @@ my %WriteMakefileArgs = (
   "TEST_REQUIRES" => {
     "Test::YAML" => "1.05"
   },
-  "VERSION" => "1.11",
+  "VERSION" => "1.12",
   "test" => {
     "TESTS" => "t/*.t"
   }
@@ -203,8 +203,8 @@ FUNCTIONAL USAGE
         Associate a normal Perl node, with a yaml node. A yaml node is an
         object tied to the YAML::Node class. The second argument is either a
         yaml node that you've already created or a class (package) name that
-        supports a yaml_dump() function. A yaml_dump() function should take
-        a perl node and return a yaml node. If no second argument is
+        supports a "yaml_dump()" function. A "yaml_dump()" function should
+        take a perl node and return a yaml node. If no second argument is
         provided, Bless will create a yaml node. This node is not returned,
         but can be retrieved with the Blessed() function.
 
@@ -1,6 +1,6 @@
 use strict; use warnings;
 package YAML::Any;
-our $VERSION = '1.11';
+our $VERSION = '1.12';
 
 use Exporter ();
 
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -562,7 +562,7 @@ sub _parse_implicit {
     return $value if $value eq '';
     return undef if $value =~ /^~$/;
     return $value
-      unless $value =~ /^[\@\`\^]/ or
+      unless $value =~ /^[\@\`]/ or
              $value =~ /^[\-\?]\s/;
     $self->die('YAML_PARSE_ERR_BAD_IMPLICIT', $value);
 }
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,5 +1,4 @@
-package YAML::Mo;
-
+package YAML::Mo; $VERSION = '0.88';
 # use Mo qw[builder default import];
 #   The following line of code was produced from the previous line by
 #   Mo::Inline version 0.31
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -1,5 +1,5 @@
 package YAML;
-our $VERSION = '1.11';
+our $VERSION = '1.12';
 
 use YAML::Mo;
 
@@ -1,7 +1,7 @@
 =pod
 
 =for comment
-DO NOT EDIT. This Pod was generated by Swim.
+DO NOT EDIT. This Pod was generated by Swim v0.1.30.
 See http://github.com/ingydotnet/swim-pm#readme
 
 =encoding utf8
@@ -242,8 +242,8 @@ Reads the YAML stream from a file instead of a string.
 
 Associate a normal Perl node, with a yaml node. A yaml node is an object tied
 to the YAML::Node class. The second argument is either a yaml node that you've
-already created or a class (package) name that supports a yaml_dump()
-function. A yaml_dump() function should take a perl node and return a yaml
+already created or a class (package) name that supports a C<yaml_dump()>
+function. A C<yaml_dump()> function should take a perl node and return a yaml
 node. If no second argument is provided, Bless will create a yaml node. This
 node is not returned, but can be retrieved with the Blessed() function.
 
@@ -1,6 +1,6 @@
 use strict;
 use lib -e 't' ? 't' : 'test';
-use TestYAML tests => 28;
+use TestYAML tests => 29;
 
 run {
     my $block = shift;
@@ -398,3 +398,8 @@ bless(do { my $x = 1; \$x}, "moose")
 --- !!perl/scalar:moose 1
 +++ perl
 bless(do { my $x = 1; \$x}, "moose")
+=== ^ can start implicit
++++ yaml
+- ^foo
++++ perl
+['^foo']