Skip to content

Commit

Permalink
fixed META.json test file
Browse files Browse the repository at this point in the history
  • Loading branch information
barbie committed Jul 29, 2012
1 parent 639fcc6 commit 2ca10e1
Show file tree
Hide file tree
Showing 13 changed files with 34 additions and 31 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
# Changes log for Data::Phrasebook

0.33 29/07/2012
- fixed META.json test file.

0.32 29/07/2012
- removed License files from distro.
- Artistic License v2 now sole license.
Expand Down
20 changes: 10 additions & 10 deletions META.json
@@ -1,6 +1,6 @@
{
"name": "Data::Phrasebook",
"version": "0.32",
"version": "0.33",
"abstract": "Access your data using the phrasebook design pattern",
"author": ["Barbie <barbie@cpan.org>"],

Expand Down Expand Up @@ -44,39 +44,39 @@
"provides": {
"Data::Phrasebook": {
"file": "lib/Data/Phrasebook.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::Debug": {
"file": "lib/Data/Phrasebook/Debug.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::Generic": {
"file": "lib/Data/Phrasebook/Generic.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::Loader": {
"file": "lib/Data/Phrasebook/Loader.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::Loader::Base": {
"file": "lib/Data/Phrasebook/Loader/Base.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::Loader::Text": {
"file": "lib/Data/Phrasebook/Loader/Text.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::Plain": {
"file": "lib/Data/Phrasebook/Plain.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::SQL": {
"file": "lib/Data/Phrasebook/SQL.pm",
"version": "0.32"
"version": "0.33"
},
"Data::Phrasebook::SQL::Query": {
"file": "lib/Data/Phrasebook/SQL/Query.pm",
"version": "0.32"
"version": "0.33"
}
},
"no_index": {
Expand Down
20 changes: 10 additions & 10 deletions META.yml
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Data-Phrasebook
version: 0.32
version: 0.33
abstract: Access your data using the phrasebook design pattern
author:
- Barbie <barbie@cpan.org>
Expand All @@ -25,31 +25,31 @@ build_requires:
provides:
Data::Phrasebook:
file: lib/Data/Phrasebook.pm
version: 0.32
version: 0.33
Data::Phrasebook::Debug:
file: lib/Data/Phrasebook/Debug.pm
version: 0.32
version: 0.33
Data::Phrasebook::Generic:
file: lib/Data/Phrasebook/Generic.pm
version: 0.32
version: 0.33
Data::Phrasebook::Loader:
file: lib/Data/Phrasebook/Loader.pm
version: 0.32
version: 0.33
Data::Phrasebook::Loader::Base:
file: lib/Data/Phrasebook/Loader/Base.pm
version: 0.32
version: 0.33
Data::Phrasebook::Loader::Text:
file: lib/Data/Phrasebook/Loader/Text.pm
version: 0.32
version: 0.33
Data::Phrasebook::Plain:
file: lib/Data/Phrasebook/Plain.pm
version: 0.32
version: 0.33
Data::Phrasebook::SQL:
file: lib/Data/Phrasebook/SQL.pm
version: 0.32
version: 0.33
Data::Phrasebook::SQL::Query:
file: lib/Data/Phrasebook/SQL/Query.pm
version: 0.32
version: 0.33
no_index:
directory:
- t
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook.pm
Expand Up @@ -5,7 +5,7 @@ use base qw( Data::Phrasebook::Debug );
use Carp qw( croak );

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/Debug.pm
Expand Up @@ -4,7 +4,7 @@ use warnings FATAL => 'all';
use Carp qw( croak );

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/Generic.pm
Expand Up @@ -6,7 +6,7 @@ use base qw( Data::Phrasebook::Debug );
use Carp qw( croak );

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/Loader.pm
Expand Up @@ -7,7 +7,7 @@ use Carp qw( croak );
use Module::Pluggable search_path => ['Data::Phrasebook::Loader'];

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/Loader/Base.pm
Expand Up @@ -5,7 +5,7 @@ use base qw( Data::Phrasebook::Debug );
use Carp qw( croak );

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/Loader/Text.pm
Expand Up @@ -6,7 +6,7 @@ use Carp qw( croak );
use IO::File;

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/Plain.pm
Expand Up @@ -5,7 +5,7 @@ use base qw( Data::Phrasebook::Generic Data::Phrasebook::Debug );
use Carp qw( croak );

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/SQL.pm
Expand Up @@ -7,7 +7,7 @@ use Carp qw( croak );
use Data::Phrasebook::SQL::Query;

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Phrasebook/SQL/Query.pm
Expand Up @@ -6,7 +6,7 @@ use vars qw( $AUTOLOAD );
use Carp qw( croak );

use vars qw($VERSION);
$VERSION = '0.32';
$VERSION = '0.33';

=head1 NAME
Expand Down
4 changes: 2 additions & 2 deletions t/96metatest.t
Expand Up @@ -7,8 +7,8 @@ use Test::More;
plan skip_all => "Author tests not required for installation"
unless ( $ENV{AUTOMATED_TESTING} );

eval "use Test::JSON::Meta 0.08";
plan skip_all => "Test::JSON::Meta 0.08 required for testing META.json files" if $@;
eval "use Test::CPAN::Meta::JSON";
plan skip_all => "Test::CPAN::Meta::JSON required for testing META.json files" if $@;

plan 'no_plan';

Expand Down

0 comments on commit 2ca10e1

Please sign in to comment.