Skip to content

Commit ad5a1fc

Browse files
author
Jan Henning Thorsen
committed
Use git-ship
1 parent 760ca69 commit ad5a1fc

File tree

4 files changed

+34
-26
lines changed

4 files changed

+34
-26
lines changed

.ship.conf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
2+
class = App::git::ship::perl
3+
project_name =
4+
homepage = https://github.com/jhthorsen/mojo-ioloop-readwritefork
5+
bugtracker = https://github.com/jhthorsen/mojo-ioloop-readwritefork/issues
6+
license = artistic_2
7+
build_test_options = # Example: -l -j8

MANIFEST.SKIP

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
^mypp.yml
2-
.git
3-
\.old
4-
\.swp
5-
~$
6-
^blib/
7-
^Makefile$
8-
^MANIFEST.*
9-
^MYMETA*
10-
^Mojo-IOLoop-ReadWriteFork
1+
#!include_default
2+
\.swp$
3+
^local/
4+
^MANIFEST\.SKIP
5+
^README\.pod

Makefile.PL

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
1+
# Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
12
use ExtUtils::MakeMaker;
23
WriteMakefile(
34
NAME => 'Mojo::IOLoop::ReadWriteFork',
5+
AUTHOR => 'Jan Henning Thorsen <[email protected]>',
6+
LICENSE => 'artistic_2',
47
ABSTRACT_FROM => 'lib/Mojo/IOLoop/ReadWriteFork.pm',
58
VERSION_FROM => 'lib/Mojo/IOLoop/ReadWriteFork.pm',
6-
AUTHOR => 'Jan Henning Thorsen <[email protected]>',
7-
LICENSE => 'perl',
8-
PREREQ_PM => {
9-
'Mojolicious' => '4.30',
10-
'IO::Pty' => '1.10',
11-
},
12-
BUILD_REQUIRES => {
13-
'Test::Memory::Cycle' => '1.04',
14-
'Test::More' => '0.90',
15-
},
9+
EXE_FILES => [qw( )],
1610
META_MERGE => {
1711
resources => {
18-
license => 'http://dev.perl.org/licenses/',
19-
homepage => 'https://metacpan.org/release/Mojo-IOLoop-ReadWriteFork',
2012
bugtracker => 'https://github.com/jhthorsen/mojo-ioloop-readwritefork/issues',
21-
repository => 'https://github.com/jhthorsen/mojo-ioloop-readwritefork',
13+
homepage => 'https://github.com/jhthorsen/mojo-ioloop-readwritefork',
14+
repository => 'https://github.com/jhthorsen/mojo-ioloop-readwritefork.git',
2215
},
2316
},
24-
test => {
25-
TESTS => 't/*.t',
26-
},
17+
BUILD_REQUIRES => {
18+
'Test::Memory::Cycle' => '1.04',
19+
'Test::More' => '0.88'
20+
}
21+
,
22+
PREREQ_PM => {
23+
'IO::Pty' => '1.10',
24+
'Mojolicious' => '4.30'
25+
}
26+
,
27+
test => { TESTS => 't/*.t' },
2728
);

cpanfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# You can install this projct with curl -L http://cpanmin.us | perl - https://github.com/jhthorsen/mojo-ioloop-readwritefork/archive/master.tar.gz
2+
requires "Mojolicious" => "4.30";
3+
requires "IO::Pty" => "1.10";
4+
test_requires "Test::Memory::Cycle" => "1.04";
5+
test_requires "Test::More" => "0.88";

0 commit comments

Comments
 (0)