Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
best-practical
rt-extension-jsgantt
Commits
43178e3c
Commit
43178e3c
authored
Oct 26, 2011
by
sunnavy
Browse files
update m:i to 1.02
parent
a2cc5c2d
Changes
9
Hide whitespace changes
Inline
Side-by-side
META.yml
View file @
43178e3c
...
...
@@ -7,7 +7,7 @@ build_requires:
configure_requires
:
ExtUtils::MakeMaker:
6.42
distribution_type
:
module
generated_by
:
'
Module::Install
version
1.0
1
'
generated_by
:
'
Module::Install
version
1.0
2
'
license
:
gplv2
meta-spec
:
url
:
http://module-build.sourceforge.net/META-spec-v1.4.html
...
...
inc/Module/Install.pm
View file @
43178e3c
...
...
@@ -31,7 +31,7 @@ BEGIN {
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
# Storage for the pseudo-singleton
$MAIN
=
undef
;
...
...
inc/Module/Install/Base.pm
View file @
43178e3c
...
...
@@ -4,7 +4,7 @@ package Module::Install::Base;
use
strict
'
vars
';
use
vars
qw{$VERSION}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
}
# Suspend handler for "redefined" warnings
...
...
inc/Module/Install/Can.pm
View file @
43178e3c
...
...
@@ -9,7 +9,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/Fetch.pm
View file @
43178e3c
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/Makefile.pm
View file @
43178e3c
...
...
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
use
vars
qw{$VERSION
@ISA
$ISCORE};
BEGIN
{
$VERSION
=
'1.0
1
'
;
$VERSION
=
'1.0
2
'
;
@ISA = 'Module
::
Install::Base';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/Metadata.pm
View file @
43178e3c
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
@@ -170,7 +170,7 @@ sub perl_version {
# Normalize the version
$version
=
$self
->
_perl_version
(
$version
);
# We don't support the reall old versions
# We don't support the reall
y
old versions
unless
(
$version
>=
5.005
)
{
die
"
Module::Install only supports 5.005 or newer (use ExtUtils::MakeMaker)
\n
";
}
...
...
@@ -582,7 +582,7 @@ sub bugtracker_from {
sub
requires_from
{
my
$self
=
shift
;
my
$content
=
Module::Install::
_readperl
(
$_
[
0
]);
my
@requires
=
$content
=~
m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+([\d\.]+)/mg
;
my
@requires
=
$content
=~
m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+(
v?
[\d\.]+)/mg
;
while
(
@requires
)
{
my
$module
=
shift
@requires
;
my
$version
=
shift
@requires
;
...
...
inc/Module/Install/Win32.pm
View file @
43178e3c
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/WriteAll.pm
View file @
43178e3c
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
qw{Module::Install::Base}
;
$ISCORE
=
1
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment