This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
git_bundles = [ | |
"git://github.com/astashov/vim-ruby-debugger.git", | |
"git://github.com/msanders/snipmate.vim.git", | |
"git://github.com/scrooloose/nerdtree.git", | |
"git://github.com/timcharper/textile.vim.git", | |
"git://github.com/tpope/vim-cucumber.git", | |
"git://github.com/tpope/vim-fugitive.git", | |
"git://github.com/tpope/vim-git.git", | |
"git://github.com/tpope/vim-haml.git", | |
"git://github.com/tpope/vim-markdown.git", | |
"git://github.com/tpope/vim-rails.git", | |
"git://github.com/tpope/vim-repeat.git", | |
"git://github.com/tpope/vim-surround.git", | |
"git://github.com/tpope/vim-vividchalk.git", | |
"git://github.com/tsaleh/vim-align.git", | |
"git://github.com/tsaleh/vim-shoulda.git", | |
"git://github.com/tsaleh/vim-supertab.git", | |
"git://github.com/tsaleh/vim-tcomment.git", | |
"git://github.com/vim-ruby/vim-ruby.git", | |
"git://repo.or.cz/vcscommand", | |
"git://github.com/vim-bundles/fuzzyfinder.git", | |
"git://github.com/borgand/ir_black.git", | |
] | |
vim_org_scripts = [ | |
["IndexedSearch", "7062", "plugin"], | |
["gist", "12732", "plugin"], | |
["jquery", "12107", "syntax"], | |
["bufexplorer", "12904", "zip"], | |
["taglist", "7701", "zip"], | |
] | |
require 'fileutils' | |
require 'open-uri' | |
bundles_dir = File.join(File.dirname(__FILE__), "bundle") | |
FileUtils.cd(bundles_dir) | |
notrash = ARGV.include?('--notrash') | |
unless notrash | |
puts "Trashing everything (lookout!)" | |
Dir["*"].each {|d| FileUtils.rm_rf d } | |
end | |
git_bundles.each do |url| | |
dir = url.split('/').last.sub(/\.git$/, '') | |
if notrash && File.exists?(dir) | |
puts " Skipping #{dir}" | |
next | |
end | |
puts " Unpacking #{url} into #{dir}" | |
`git clone #{url} #{dir}` | |
FileUtils.rm_rf(File.join(dir, ".git")) | |
end | |
vim_org_scripts.each do |name, script_id, script_type| | |
local_file = File.join(name, script_type, "#{name}.#{script_type == 'zip' ? 'zip' : 'vim'}") | |
if notrash && File.exists?(local_file) | |
puts " Skipping #{local_file}" | |
next | |
end | |
puts " Downloading #{name}" | |
FileUtils.mkdir_p(File.dirname(local_file)) | |
File.open(local_file, "w") do |file| | |
file << open("http://www.vim.org/scripts/download_script.php?src_id=#{script_id}").read | |
end | |
if script_type == 'zip' | |
%x(unzip -d #{name} #{local_file}) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated to not trash the directory if the --notrash switch is given -- will instead just download scripts that are not already installed.