Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
best-practical
rt-extension-ldapimport
Commits
eac7ede2
Commit
eac7ede2
authored
Jan 31, 2008
by
Kevin Falcone
Browse files
bump version
parent
4a05e0a0
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
16 additions
and
14 deletions
+16
-14
META.yml
META.yml
+4
-3
inc/Module/Install.pm
inc/Module/Install.pm
+1
-1
inc/Module/Install/Base.pm
inc/Module/Install/Base.pm
+1
-1
inc/Module/Install/Can.pm
inc/Module/Install/Can.pm
+1
-1
inc/Module/Install/Fetch.pm
inc/Module/Install/Fetch.pm
+1
-1
inc/Module/Install/Makefile.pm
inc/Module/Install/Makefile.pm
+1
-1
inc/Module/Install/Metadata.pm
inc/Module/Install/Metadata.pm
+1
-1
inc/Module/Install/RTx.pm
inc/Module/Install/RTx.pm
+3
-2
inc/Module/Install/Win32.pm
inc/Module/Install/Win32.pm
+1
-1
inc/Module/Install/WriteAll.pm
inc/Module/Install/WriteAll.pm
+1
-1
lib/RT/Extension/LDAPImport.pm
lib/RT/Extension/LDAPImport.pm
+1
-1
No files found.
META.yml
View file @
eac7ede2
---
abstract
:
Import RT Users from an LDAP store
author
:
Kevin Falcone <falcone@bestpractical.com>
author
:
-
Kevin Falcone <falcone@bestpractical.com>
distribution_type
:
module
generated_by
:
Module::Install version
0.6
7
0
generated_by
:
Module::Install version
0.6
8
0
license
:
perl
meta-spec
:
url
:
http://module-build.sourceforge.net/META-spec-v1.3.html
...
...
@@ -18,4 +19,4 @@ requires:
Net::LDAP:
0
RT
:
3.6.3
Test::More:
0
version
:
0.0
4
version
:
0.0
5
inc/Module/Install.pm
View file @
eac7ede2
...
...
@@ -28,7 +28,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
=
'
0.6
7
';
$VERSION
=
'
0.6
8
';
}
# Whether or not inc::Module::Install is actually loaded, the
...
...
inc/Module/Install/Base.pm
View file @
eac7ede2
#line 1
package
Module::Install::
Base
;
$VERSION
=
'
0.6
7
';
$VERSION
=
'
0.6
8
';
# Suspend handler for "redefined" warnings
BEGIN
{
...
...
inc/Module/Install/Can.pm
View file @
eac7ede2
...
...
@@ -11,7 +11,7 @@ use ExtUtils::MakeMaker ();
use
vars
qw{$VERSION $ISCORE @ISA}
;
BEGIN
{
$VERSION
=
'
0.6
7
';
$VERSION
=
'
0.6
8
';
$ISCORE
=
1
;
@ISA
=
qw{Module::Install::Base}
;
}
...
...
inc/Module/Install/Fetch.pm
View file @
eac7ede2
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base;
use
vars
qw{$VERSION $ISCORE @ISA}
;
BEGIN
{
$VERSION
=
'
0.6
7
';
$VERSION
=
'
0.6
8
';
$ISCORE
=
1
;
@ISA
=
qw{Module::Install::Base}
;
}
...
...
inc/Module/Install/Makefile.pm
View file @
eac7ede2
...
...
@@ -7,7 +7,7 @@ use ExtUtils::MakeMaker ();
use
vars
qw{$VERSION
$ISCORE
@ISA};
BEGIN
{
$VERSION
=
'0.6
7
'
;
$VERSION
=
'0.6
8
'
;
$ISCORE
=
1
;
@ISA = qw{Module
::
Install::Base};
}
...
...
inc/Module/Install/Metadata.pm
View file @
eac7ede2
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base;
use
vars
qw{$VERSION $ISCORE @ISA}
;
BEGIN
{
$VERSION
=
'
0.6
7
';
$VERSION
=
'
0.6
8
';
$ISCORE
=
1
;
@ISA
=
qw{Module::Install::Base}
;
}
...
...
inc/Module/Install/RTx.pm
View file @
eac7ede2
...
...
@@ -50,6 +50,7 @@ sub RTx {
my
$lib_path
=
File::Basename::
dirname
(
$INC
{'
RT.pm
'}
);
print
"
Using RT configuration from
$INC
{'RT.pm'}:
\n
";
unshift
@INC
,
"
$RT
::LocalPath/lib
"
if
$
RT::
LocalPath
;
$
RT::
LocalVarPath
||=
$
RT::
VarPath
;
$
RT::
LocalPoPath
||=
$
RT::
LocalLexiconPath
;
...
...
@@ -171,6 +172,6 @@ sub RTxInit {
__END__
#line 23
8
#line 23
9
#line 2
59
#line 2
60
inc/Module/Install/Win32.pm
View file @
eac7ede2
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base;
use
vars
qw{$VERSION $ISCORE @ISA}
;
BEGIN
{
$VERSION
=
'
0.6
7
';
$VERSION
=
'
0.6
8
';
$ISCORE
=
1
;
@ISA
=
qw{Module::Install::Base}
;
}
...
...
inc/Module/Install/WriteAll.pm
View file @
eac7ede2
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base;
use
vars
qw{$VERSION $ISCORE @ISA}
;
BEGIN
{
$VERSION
=
'
0.6
7
';
$VERSION
=
'
0.6
8
';
$ISCORE
=
1
;
@ISA
=
qw{Module::Install::Base}
;
}
...
...
lib/RT/Extension/LDAPImport.pm
View file @
eac7ede2
package
RT::Extension::
LDAPImport
;
our
$VERSION
=
'
0.0
4
';
our
$VERSION
=
'
0.0
5
';
use
warnings
;
use
strict
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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