NAME

VIM::Uploader - upload your vim script to vim.org

VERSION

Version 0.01

SYNOPSIS

use VIM::Uploader;

my $uploader = VIM::Uploader->new();

$uploader->login( )

or

$uploader->login( 
    user => 'xxx',
    pass => 'xxx',
);


my $ok = $uploader->upload( 
    script_id => 1234,
    script_file => '/path/to/your/file',
    vim_version => '7.0',               # valid values:  7.0 , 6.0 , 5.7
    script_version => '0.2',            # your vim script version
    version_comment => 'release note'   # your vim script release note.
);

print "DONE" if $ok;

FUNCTIONS

AUTHOR

Cornelius, <cornelius.howl at gmail.com>

BUGS

Please report any bugs or feature requests to bug-vim-uploader at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=VIM-Uploader. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc VIM::Uploader

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2009 Cornelius.

This program is released under the following license: MIT