Skip to content

Commit

Permalink
Merge pull request #3 from oposs/initial
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtoobii authored Feb 11, 2022
2 parents f5a9474 + 1d2938d commit 8f34650
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ Makefile
*.tar.gz
cover_db
MYMETA.*
*.iml
*.iml
blib
pm_to_blib
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.0.2 2022-02-11 12:52:26 +0100 Tobias Bossert <tobib at cpan.org>
- Repo updates
- Constrained dependency versions

0.0.1 2022-01-25 13:30:48 +0100 Tobias Bossert <tobib at cpan.org>
- initial release

3 changes: 0 additions & 3 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,5 @@ LICENSE
Makefile.PL
MANIFEST This list of files
MANIFEST.SKIP
MANIFEST.skip
Mojolicious-Command-coverage-0.0.1/META.json
Mojolicious-Command-coverage-0.0.1/META.yml
README.md
VERSION
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ WriteMakefile(
requires => { perl => '5.020000' },
resources => {
license => 'https://opensource.org/licenses/mit',
repository => 'https://github.com/oposs/mojolicious_coverage',
bugtracker => 'https://github.com/oposs/mojolicious_coverage/issues'
repository => 'https://github.com/oposs/mojolicious-command-coverage',
bugtracker => 'https://github.com/oposs/mojolicious-command-coverage/issues'
},
no_index => { directory => [ 't' ] },
homepage => 'https://www.oetiker.ch',
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# mojolicious_coverage
# Mojolicious::Command::coverage

![https://metacpan.org/pod/Mojolicious::Command::coverage](https://img.shields.io/cpan/v/Mojolicious-Command-coverage)

Start you Mojo app in coverage mode

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1
0.0.2
6 changes: 3 additions & 3 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
requires 'Mojolicious';
requires 'Devel::Cover';
requires 'Devel::Deanonymize';
requires 'Mojolicious', '>=8.50';
requires 'Devel::Cover', '>=1.36';
requires 'Devel::Deanonymize','>= 0.2.0';;
2 changes: 1 addition & 1 deletion lib/Mojolicious/Command/coverage.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings FATAL => 'all';
use Mojo::Base 'Mojolicious::Command', -signatures;
use Mojo::Util qw(getopt);

our $VERSION = "0.0.0"; # Do not update manually
our $VERSION = "0.0.2"; # Do not update manually

# Short description
has description => 'Start you Mojo app in coverage mode';
Expand Down

0 comments on commit 8f34650

Please sign in to comment.