repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
clean
[sgn.git]
/
lib
/
SGN
/
Devel
/
MyDevLibs.pm
blob
cef52798f3a8174c6b044b327fbc039f122c7817
1
package
SGN
::
Devel
::
MyDevLibs
;
2
use
strict
;
3
use
warnings FATAL
=>
'all'
;
4
use
Class
::
MOP
;
5
use
Try
::
Tiny
;
6
use
Class
::
Load
':all'
;
7
8
our
$VERSION
=
'0.01'
;
9
BEGIN
{
10
try
{
11
#Class::MOP::load_class('MyDevLibs');
12
load_class
(
'MyDevLibs'
);
13
}
14
catch
{
15
unless
(
/Can't locate MyDevLibs\.pm/
) {
16
warn
$_
;
17
die
$_
;
18
}
19
}
20
}
21
22
1
;
23