Skip to content

Commit

Permalink
Merge remote branch 'rafl/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
nothingmuch committed Oct 8, 2010
2 parents 31fe50f + cab1ab5 commit 1984c70
Show file tree
Hide file tree
Showing 20 changed files with 29 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -6,3 +6,5 @@ Makefile.old
pm_to_blib*
*.tar.gz
cover_db
MANIFEST*
!MANIFEST.SKIP
8 changes: 7 additions & 1 deletion Changes
@@ -1,4 +1,10 @@
0.48
0.49
- Merge NUFFIN/0.48 and FLORA/0.48

0.48 [FLORA]
- Avoid warnings from Moose 1.10

0.48 [NUFFIN]
- Reupload with proper MANIFEST

0.47
Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB.pm
Expand Up @@ -3,7 +3,7 @@
package KiokuDB;
use Moose;

our $VERSION = "0.48";
our $VERSION = "0.49";

use constant SERIAL_IDS => not not our $SERIAL_IDS;

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Set/Deferred.pm
Expand Up @@ -11,7 +11,7 @@ use Scalar::Util qw(refaddr);

use namespace::clean -except => 'meta';

with qw(KiokuDB::Set::Storage) => { excludes => '_apply' };
with qw(KiokuDB::Set::Storage) => { -excludes => '_apply' };

extends qw(KiokuDB::Set::Base);

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Stream/Objects.pm
Expand Up @@ -53,7 +53,7 @@ has _no_scope => (
is => "rw",
);

with qw(Data::Stream::Bulk) => { excludes => 'loaded' };
with qw(Data::Stream::Bulk) => { -excludes => 'loaded' };

sub next {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/Binary.pm
Expand Up @@ -16,7 +16,7 @@ use namespace::clean -except => 'meta';

use constant required_backend_roles => qw(BinarySafe);

with qw(KiokuDB::Test::Fixture) => { excludes => 'required_backend_roles' };
with qw(KiokuDB::Test::Fixture) => { -excludes => 'required_backend_roles' };

my $utf8 = "חיים";

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/Clear.pm
Expand Up @@ -12,7 +12,7 @@ use namespace::clean -except => 'meta';

use constant required_backend_roles => qw(Clear);

with qw(KiokuDB::Test::Fixture) => { excludes => [qw/sort required_backend_roles/] };
with qw(KiokuDB::Test::Fixture) => { -excludes => [qw/sort required_backend_roles/] };

sub sort { -10 }

Expand Down
5 changes: 3 additions & 2 deletions lib/KiokuDB/Test/Fixture/Concurrency.pm
Expand Up @@ -11,7 +11,7 @@ use POSIX qw(_exit :sys_wait_h);

use namespace::clean -except => 'meta';

with qw(KiokuDB::Test::Fixture) => { excludes => [qw/run required_backend_roles/] };
with qw(KiokuDB::Test::Fixture) => { -excludes => [qw/run required_backend_roles/] };

use constant required_backend_roles => qw(Clear TXN Concurrency::POSIX);

Expand All @@ -23,7 +23,8 @@ use constant ITER => 10;
my @ids = qw(foo bar gorch baz);

{
package Foo;
package # hide from PAUSE
Foo;
use Moose;

has bar => ( is => 'rw' );
Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/MassInsert.pm
Expand Up @@ -16,7 +16,7 @@ sub p {
KiokuDB::Test::Person->new(@args);
}

with qw(KiokuDB::Test::Fixture) => { excludes => [qw/populate sort/] };
with qw(KiokuDB::Test::Fixture) => { -excludes => [qw/populate sort/] };

sub sort { 100 }

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/ObjectGraph.pm
Expand Up @@ -44,7 +44,7 @@ sub clique {

use namespace::clean -except => 'meta';

with qw(KiokuDB::Test::Fixture) => { excludes => [qw/populate sort/] };
with qw(KiokuDB::Test::Fixture) => { -excludes => [qw/populate sort/] };

has [qw(homer dubya putin)] => (
isa => "Str",
Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/Overwrite.pm
Expand Up @@ -36,7 +36,7 @@ sub p {
KiokuDB::Test::Person->new(@args);
}

with qw(KiokuDB::Test::Fixture) => { excludes => [qw/populate sort/] };
with qw(KiokuDB::Test::Fixture) => { -excludes => [qw/populate sort/] };

sub sort { -100 }

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/Refresh.pm
Expand Up @@ -14,7 +14,7 @@ sub p {
KiokuDB::Test::Person->new(@args);
}

with qw(KiokuDB::Test::Fixture) => { excludes => [qw/populate sort/] };
with qw(KiokuDB::Test::Fixture) => { -excludes => [qw/populate sort/] };

sub sort { -100 }

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/RootSet.pm
Expand Up @@ -11,7 +11,7 @@ use KiokuDB::Test::Company;

use namespace::clean -except => 'meta';

with qw(KiokuDB::Test::Fixture) => { excludes => 'sort' };
with qw(KiokuDB::Test::Fixture) => { -excludes => 'sort' };

sub sort { -50 }

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/Scan.pm
Expand Up @@ -10,7 +10,7 @@ use KiokuDB::Test::Person;

use namespace::clean -except => 'meta';

with qw(KiokuDB::Test::Fixture) => { excludes => 'required_backend_roles' };
with qw(KiokuDB::Test::Fixture) => { -excludes => 'required_backend_roles' };

use constant required_backend_roles => qw(Clear Scan);

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/SimpleSearch.pm
Expand Up @@ -10,7 +10,7 @@ use KiokuDB::Test::Person;

use namespace::clean -except => 'meta';

with qw(KiokuDB::Test::Fixture) => { excludes => 'required_backend_roles' };
with qw(KiokuDB::Test::Fixture) => { -excludes => 'required_backend_roles' };

use constant required_backend_roles => qw(Clear Query::Simple);

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/Small.pm
Expand Up @@ -22,7 +22,7 @@ sub p {
KiokuDB::Test::Person->new(@args);
}

with qw(KiokuDB::Test::Fixture) => { excludes => [qw/populate sort/] };
with qw(KiokuDB::Test::Fixture) => { -excludes => [qw/populate sort/] };

sub sort { -100 }

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/TypeMap/Default.pm
Expand Up @@ -59,7 +59,7 @@ use constant HAVE_MX_OP => try { require MooseX::Object::Pluggable }
has name => ( is => "rw" );
}

with qw(KiokuDB::Test::Fixture) => { excludes => 'required_backend_roles' };
with qw(KiokuDB::Test::Fixture) => { -excludes => 'required_backend_roles' };

sub create {
tie my %refhash, 'Tie::RefHash';
Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/Test/Fixture/Unicode.pm
Expand Up @@ -16,7 +16,7 @@ use namespace::clean -except => 'meta';

use constant required_backend_roles => qw(UnicodeSafe);

with qw(KiokuDB::Test::Fixture) => { excludes => 'required_backend_roles' };
with qw(KiokuDB::Test::Fixture) => { -excludes => 'required_backend_roles' };

my $unicode = "משה";

Expand Down
2 changes: 1 addition & 1 deletion lib/KiokuDB/TypeMap/Default/JSON.pm
Expand Up @@ -8,7 +8,7 @@ use namespace::clean -except => 'meta';
extends qw(KiokuDB::TypeMap);

with 'KiokuDB::TypeMap::Default::Canonical' => {
excludes => [qw(reftype_entries)],
-excludes => [qw(reftype_entries)],
};

has json_boolean_typemap => (
Expand Down
2 changes: 1 addition & 1 deletion t/gin.t
Expand Up @@ -25,7 +25,7 @@ use ok 'Search::GIN::Extract::Class';

with (
'KiokuDB::GIN',
'Search::GIN::Driver::Hash' => { excludes => 'clear' },
'Search::GIN::Driver::Hash' => { -excludes => 'clear' },
'Search::GIN::Extract::Delegate',
);

Expand Down

0 comments on commit 1984c70

Please sign in to comment.