Re: [Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread Denny
On Mon, 2015-10-19 at 14:21 +0100, Andrew wrote: > I ran catalyst.pl to create a new app (at least I think that's how I > did it - it was a couple of days back now), > and when I opened the main pm file, near the top was: > > use Catalyst::Runtime 5.80; > > I'd just installed Catalyst 5.90101

Re: [Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread David Schmidt
My guess, it makes sure you run at least v5.80 possibly because older versions are not supported anymore. I am sure someone will correct me if I am wrong. http://perldoc.perl.org/functions/use.html "If the VERSION argument is present between Module and LIST, then the use will call the VERSION

Re: [Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread Gianni Ceccarelli
On Mon, 19 Oct 2015 14:21:15 +0100 "Andrew" wrote: > What was the significance of 5.80 being written there? It's a general feature of perl, not specific to Catalyst. As your most probably already know, when you say:: use Some::Module qw(some thing); it