in reply to Stucked in YAML::Tiny

Even I tried to run the example given on the CPAN site but it's also giving the same error that Write can't be executed on unblessed function.

Replies are listed 'Best First'.
Re^2: Stucked in YAML::Tiny
by Corion (Patriarch) on Jul 16, 2012 at 14:09 UTC

    Please show the exact code you're running. The symptoms you describe sound as if you're running

    my $string = Dump(...);

    without the appropriate use YAML::Tiny 'Dump'; at the top of your program. The documentation states that just three lines above your linked part of the documentation.

      For anyone else that finds this post when searching for a solution to this issue... For me it was because I had spaces before the '---' in my config file so the yaml object wasn't being created. It would be useful to have a check and output YAML::Tiny->errstr in the example for n00bs like myself :)
        I ran into the same issue (Can't call method "write" on unblessed reference at ...). In my case the yaml did not contain a newline. +1 for making the example check for YAML::Tiny-errstr