NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Well, kind of... (Score:1)
You can install devel releases via the CPAN client, but referencing the module DIRECTLY, rather than by module name.
So...
> cpan -i Foo::Bar
This maps Foo::Bar via the index to AUTHOR/Foo-Bar-0.01.tar.gz
But likewise, you can just do it directly.
> cpan -i AUTHOR/Foo-Bar-0.01.tar.gz
And it will work.
This mechanism is what things like CPAN::Inject take advantage of.
Re: (Score:2)
Well I am actually more a distributor in that sense I want to make use of the ability to distribute both a beta and stable distribution release.
But giving INSTALL instructions even for the beta distribution makes good sense.
Thanks for the feedback,
jonasbn