Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Jul 28, 2024
1 parent 0949dd7 commit a2bc366
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
.vscode/
.vscode/
App-LastStats-*.tar.gz
App-LastStats-*/
MYMETA.json
MYMETA.yml
Makefile
blib/
pm_to_blib
15 changes: 14 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,24 @@ WriteMakefile(
NAME => 'App::LastStats',
VERSION_FROM => 'lib/App/LastStats.pm',
ABSTRACT_FROM => 'lib/App/LastStats.pm',
AUTHOR => 'Your Name <you@example.com>',
AUTHOR => 'Dave Cross <dave@perlhacks.com>',
LICENSE => 'perl',
PREREQ_PM => {
'Net::LastFM' => 0,
'Getopt::Long' => 0,
'JSON' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/davorg-cpan/app-laststats.git',
web => 'https://github.com/davorg-cpan/app-laststats',
},
bugtracker => {
"web" => "https://github.com/davorg-cpan/app-laststats/issues"
}
},
},
);
3 changes: 2 additions & 1 deletion bin/laststats
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ The time period for the stats. Can be "overall", "7day", "1month", "3month", "6m
=head1 AUTHOR
Your Name <you@example.com>
Dave Cross <dave@perlhacks.com>
=head1 LICENSE
This script is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut
3 changes: 2 additions & 1 deletion lib/App/LastStats.pm
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,10 @@ Fetches the Last.fm statistics for the specified user and time period.
=head1 AUTHOR
Your Name <you@example.com>
Dave Cross <dave@perlhacks.com>
=head1 LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut

0 comments on commit a2bc366

Please sign in to comment.