Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Release v0.02
Browse files Browse the repository at this point in the history
  • Loading branch information
derf committed Jul 2, 2011
1 parent b23bdff commit 9f6ebb7
Show file tree
Hide file tree
Showing 18 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions bin/slackeria
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ my $template;
my $verbose = 0;
my ( @plugins, @projects );

our $VERSION = '0.1';
our $VERSION = '0.02';

GetOptions(
'P|projects=s@' => sub { push( @projects, split( qr{,}, $_[1] ) ) },
Expand Down Expand Up @@ -77,7 +77,7 @@ B<slackeria> [B<-v>|B<--verbose>] I<outfile>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Config::Tiny;
use Carp;
use File::BaseDir qw(config_files);

our $VERSION = '0.1';
our $VERSION = '0.02';

sub new {
my ($obj) = @_;
Expand Down Expand Up @@ -95,7 +95,7 @@ App::Slackeria::Config - Get config values for App::Slackeria and plugins
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Output.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use HTML::Template;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub format_check {
my ( $self, $res ) = @_;
Expand Down Expand Up @@ -121,7 +121,7 @@ App::Slackeria::Output - XHTML output for App::Slackeria
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.010;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub new {
my ( $obj, %conf ) = @_;
Expand Down Expand Up @@ -81,7 +81,7 @@ App::Slackeria::Plugin - Plugin wrapper for App::Slackeria
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.010;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub new {
my ( $obj, %conf ) = @_;
Expand Down Expand Up @@ -76,7 +76,7 @@ App::Slackeria::Plugin::Base - parent class for all slackeria plugins
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/CPAN.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent 'App::Slackeria::Plugin::Base';

use CPANPLUS;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub new {
my ( $obj, %conf ) = @_;
Expand Down Expand Up @@ -47,7 +47,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Debian.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Whohas';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand All @@ -30,7 +30,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/FreeBSD.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Whohas';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand All @@ -30,7 +30,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Freshmeat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent 'App::Slackeria::Plugin::Base';

use WWW::Freshmeat;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub new {
my ( $obj, %conf ) = @_;
Expand Down Expand Up @@ -52,7 +52,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Gentoo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Whohas';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand All @@ -30,7 +30,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Git.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use File::Slurp;
use List::Util qw(first);
use Sort::Versions;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand Down Expand Up @@ -58,7 +58,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/GitHub.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use parent 'App::Slackeria::Plugin::Base';
use Net::GitHub;
use Sort::Versions;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand Down Expand Up @@ -62,7 +62,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Ikiwiki.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Base';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand Down Expand Up @@ -56,7 +56,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/OpenPorts.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use parent 'App::Slackeria::Plugin::Base';
use LWP::UserAgent;
use XML::LibXML;

our $VERSION = '0.1';
our $VERSION = '0.02';

sub new {
my ( $obj, %conf ) = @_;
Expand Down Expand Up @@ -71,7 +71,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/OpenSUSE.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Whohas';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand All @@ -30,7 +30,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Pkgsrc.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Whohas';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand All @@ -30,7 +30,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Ubuntu.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Whohas';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub check {
my ($self) = @_;
Expand All @@ -30,7 +30,7 @@ In F<slackeria/config>
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/App/Slackeria/Plugin/Whohas.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'App::Slackeria::Plugin::Base';

our $VERSION = '0.1';
our $VERSION = '0.02';

sub run_whohas {
my ( $self, $distro, $name ) = @_;
Expand Down Expand Up @@ -45,7 +45,7 @@ App::Slackeria::Plugin::Whohas - Parent for whohas-based distro check plugins
=head1 VERSION
version 0.1
version 0.02
=head1 DESCRIPTION
Expand Down

0 comments on commit 9f6ebb7

Please sign in to comment.