- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Perl/モジュール作成/Module-Install へ行く。
- 1 (2011-01-08 (土) 13:42:21)
Module::Install
package Foo::Bar; our $VERSION = '0.001'; 1;
use strict; use inc::Module::Install; name('Foo-Bar'); all_from('lib/Foo/Bar.pm'); WriteAll;
use strict; use Test::More tests => 1; use_ok('Foo::Bar');