Sha256: 09d935bbc2686e313dec33d5494428b17ed22c3c985ceb80747543d784329144
Contents?: true
Size: 454 Bytes
Versions: 10
Compression:
Stored size: 454 Bytes
Contents
package Module::Build::Dumper; use strict; use warnings; our $VERSION = '0.4232'; # This is just a split-out of a wrapper function to do Data::Dumper # stuff "the right way". See: # http://groups.google.com/group/perl.module.build/browse_thread/thread/c8065052b2e0d741 use Data::Dumper; sub _data_dump { my ($self, $data) = @_; return ("do{ my " . Data::Dumper->new([$data],['x'])->Purity(1)->Terse(0)->Sortkeys(1)->Dump() . '$x; }') } 1;
Version data entries
10 entries across 5 versions & 1 rubygems