Jonathan Leto <jonat...@leto.net> writes:
> Howdy,
>
> It looks like the toolchain does not like the fact that I am using
> MooseX::Declare in my Net::Topsy module [0]. It also had a hard time
> figuring out my version number, until I hard-coded it in Build.PL .
> Currently, META.yml does not show any modules that are written in
> MooseX::Declare.
>
> Who is to blame/what to do now?

Most important: do not wait for the feature, just help the CPAN
indexer and M::B on the package and version, it's easy:

  use MooseX::Declare;
  class Foo::Bar {
     # your class implementation here
  }
  # help the CPAN indexer
  package Foo::Bar;          # (yes, repeat it)
  our $VERSION = '0.05';
  1;


Kind regards,
Steffen 
-- 
Steffen Schwigon <s...@renormalist.net>
Dresden Perl Mongers <http://dresden-pm.org/>
Deutscher Perl-Workshop <http://www.perl-workshop.de/>

Reply via email to