Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
friedo committed Nov 26, 2011
1 parent 97c06e8 commit 3e895ab
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 2 deletions.
3 changes: 3 additions & 0 deletions lib/Redis/Client.pm
Expand Up @@ -4,6 +4,7 @@ use Moose;
use IO::Socket::INET ();
use Carp 'croak';
use utf8;
use namespace::sweep 0.003;

# ABSTRACT: Perl client for Redis 2.4 and up

Expand Down Expand Up @@ -211,6 +212,8 @@ sub _read_single_line {
}


__PACKAGE__->meta->make_immutable;

1;

__END__
Expand Down
5 changes: 5 additions & 0 deletions lib/Redis/Client/Hash.pm
@@ -1,8 +1,11 @@
package Redis::Client::Hash;

# ABSTRACT: Work with Redis hashes

use Moose;
with 'Redis::Client::Role::Tied';

use namespace::sweep 0.003;
use Carp 'croak';


Expand Down Expand Up @@ -71,6 +74,8 @@ sub NEXTKEY {

1;

__PACKAGE__->meta->make_immutable;


__END__
Expand Down
5 changes: 3 additions & 2 deletions lib/Redis/Client/List.pm
@@ -1,10 +1,11 @@
package Redis::Client::List;

# ABSTRACT: Work with Redis lists

use Moose;
with 'Redis::Client::Role::Tied';

# ABSTRACT: Work with Redis lists

use namespace::sweep 0.003;
use Carp 'croak';

sub TIEARRAY {
Expand Down
6 changes: 6 additions & 0 deletions lib/Redis/Client/Set.pm
@@ -1,8 +1,11 @@
package Redis::Client::Set;

# ABSTRACT: Work with Redis sets

use Moose;
with 'Redis::Client::Role::Tied';

use namespace::sweep 0.003;
use Carp 'croak';


Expand Down Expand Up @@ -62,6 +65,9 @@ sub NEXTKEY {
}


__PACKAGE__->meta->make_immutable;


1;


Expand Down
1 change: 1 addition & 0 deletions lib/Redis/Client/String.pm
Expand Up @@ -5,6 +5,7 @@ package Redis::Client::String;
use Moose;
with 'Redis::Client::Role::Tied';

use namespace::sweep 0.003;
use overload
'""' => 'FETCH',
'${}' => 'FETCH',
Expand Down
6 changes: 6 additions & 0 deletions lib/Redis/Client/Zset.pm
@@ -1,8 +1,11 @@
package Redis::Client::Zset;

# ABSTRACT: Work with Redis ordered sets (zsets)

use Moose;
with 'Redis::Client::Role::Tied';

use namespace::sweep 0.003;
use Carp 'croak';


Expand Down Expand Up @@ -70,6 +73,9 @@ sub NEXTKEY {
1;


__PACKAGE__->meta->make_immutable;


__END__
=pod
Expand Down

0 comments on commit 3e895ab

Please sign in to comment.