perl6のminimal authoring toolを作った

github.com

perl6を知るにはとにかくモジュールを書いてみることで、それには簡単なやつでいいのでauthoring toolがあったほうがいいので作った。1ヶ月後には全く違ったperl6が書けるようになっていることを祈る。

使い方

new, build, test コマンドがあり minil と同じ感覚で使える(はず。)

> mi6 new Foo::Bar

> find Foo-Bar -type f -not -iwholename '*.git*'
Foo-Bar/.travis.yml
Foo-Bar/lib/Foo/Bar.pm6
Foo-Bar/LICENSE
Foo-Bar/META.info
Foo-Bar/README.md
Foo-Bar/t/01-basic.t

> cd Foo-Bar
> mi6 build  # regenerate README.md
> mi6 test   # run tests

なお release はない。

インストール方法

> panda install git://github.com/shoichikaji/mi6.git

結論

perl6を書く準備は万全である。