delicious-backup

 view release on metacpan or  search on metacpan

lib/Net/Delicious/Simple.pm  view on Meta::CPAN

=cut

sub new {
	my ($class, $config) = @_;

	return unless my $del = Net::Delicious->new({
    %$config,
    updates => File::Temp::tempdir(CLEANUP => 1),
  });

	bless { del => $del } => $class;
}

=head2 tags

This returns all of your tags, in a list.

=cut

sub tags { my @tags = map { $_->tag } (shift)->{del}->tags }

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.694 second using v1.00-cache-2.02-grep-82fe00e-cpan-48ebf85a1963 )