ADAMK-Release
    
    
  
  
  
view release on metacpan or search on metacpan
lib/ADAMK/Release.pm view on Meta::CPAN
			"Failed to download and extract %s: %s",
			$self->github->url,
			$self->github->error,
		);
	}
	# This is total bulldozer coding, there is no reason whatsoever why
	# this stuff should be in seperate methods except that it provides
	# a little cleaner logical breakup, and maybe I want to subclass this
	# someday or something.
	$self->validate;
	$self->assemble;
	$self->build;
	# Release the distribution
	$self->upload if $self->release;
	return;
}
sub validate {
	my $self = shift;
	unless ( $self->dist_version ) {
		$self->error("Failed to find version number in main module");
	}
	unless ( $self->makefile_pl or $self->build_pl ) {
		$self->error("Failed to find Makefile.PL or Build.PL");
	}
	return;
( run in 0.820 second using v1.01-cache-2.11-cpan-5dc5da66d9d )