Skip to content

Commit

Permalink
package name is now Games::BubbleBreaker
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Jun 22, 2011
1 parent a9b90bd commit 83b8c6f
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Build.PL
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ use warnings;
use Module::Build; use Module::Build;


my $build = Module::Build->new( my $build = Module::Build->new(
module_name => 'Games::Puzzle::BubbleBreaker', module_name => 'Games::BubbleBreaker',
all_from => 'lib/Games/Puzzle/BubbleBreaker.pm', all_from => 'lib/Games/BubbleBreaker.pm',
dist_author => 'Tobias Leich <froggs@cpan.org>', dist_author => 'Tobias Leich <froggs@cpan.org>',
license => 'perl', license => 'perl',
requires => { requires => {
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
Revision history for Perl module Games::Puzzle::BubbleBreaker Revision history for Perl module Games::BubbleBreaker


0.01 Sun Jun 19 2011 0.01 Sun Jun 19 2011
- first release [FROGGS] - first release [FROGGS]
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
bin/bubble-breaker.pl bin/bubble-breaker.pl
Build.PL Build.PL
CHANGELOG CHANGELOG
lib/Games/Puzzle/BubbleBreaker.pm lib/Games/BubbleBreaker.pm
MANIFEST This list of files MANIFEST This list of files
META.json META.json
META.yml META.yml
Expand Down
6 changes: 3 additions & 3 deletions META.json
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2" "version" : "2"
}, },
"name" : "Games-Puzzle-BubbleBreaker", "name" : "Games-BubbleBreaker",
"prereqs" : { "prereqs" : {
"configure" : { "configure" : {
"requires" : { "requires" : {
Expand All @@ -29,8 +29,8 @@
} }
}, },
"provides" : { "provides" : {
"Games::Puzzle::BubbleBreaker" : { "Games::BubbleBreaker" : {
"file" : "lib/Games/Puzzle/BubbleBreaker.pm", "file" : "lib/Games/BubbleBreaker.pm",
"version" : "0.01" "version" : "0.01"
} }
}, },
Expand Down
6 changes: 3 additions & 3 deletions META.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ license: perl
meta-spec: meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4 version: 1.4
name: Games-Puzzle-BubbleBreaker name: Games-BubbleBreaker
provides: provides:
Games::Puzzle::BubbleBreaker: Games::BubbleBreaker:
file: lib/Games/Puzzle/BubbleBreaker.pm file: lib/Games/BubbleBreaker.pm
version: 0.01 version: 0.01
requires: requires:
File::ShareDir: 1.00 File::ShareDir: 1.00
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME NAME
Games::Puzzle::BubbleBreaker - a mouse based logic game Games::BubbleBreaker - a mouse based logic game


INSTALLATION INSTALLATION
perl Build.PL perl Build.PL
Expand Down
2 changes: 1 addition & 1 deletion bin/bubble-breaker.pl
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
my ($v, $p, $f) = splitpath(__FILE__); my ($v, $p, $f) = splitpath(__FILE__);
my $SHARE = -e catpath($v, catdir($p, '..', 'share'), 'background.png') my $SHARE = -e catpath($v, catdir($p, '..', 'share'), 'background.png')
? catpath($v, catdir($p, '..', 'share')) ? catpath($v, catdir($p, '..', 'share'))
: dist_dir('Games-Puzzle-BubbleBreaker'); : dist_dir('Games-BubbleBreaker');
my $last_click = Time::HiRes::time; my $last_click = Time::HiRes::time;
my $sfont_white = SDLx::SFont->new( catfile($SHARE, 'font_white.png') ); my $sfont_white = SDLx::SFont->new( catfile($SHARE, 'font_white.png') );
my $sfont_blue = SDLx::SFont->new( catfile($SHARE, 'font_blue.png') ); my $sfont_blue = SDLx::SFont->new( catfile($SHARE, 'font_blue.png') );
Expand Down
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
package Games::Puzzle::BubbleBreaker; package Games::BubbleBreaker;


our $VERSION = '0.01'; our $VERSION = '0.01';


Expand All @@ -10,7 +10,7 @@ __END__
=head1 NAME =head1 NAME
Games::Puzzle::BubbleBreaker - a mouse based logic game Games::BubbleBreaker - a mouse based logic game
=head1 INSTALLATION =head1 INSTALLATION
Expand Down

0 comments on commit 83b8c6f

Please sign in to comment.