Skip to content

Commit

Permalink
Use git urls because older git binaries dont support http urls
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Nov 13, 2010
1 parent a8bcc61 commit 0896d1b
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions Rakefile
Expand Up @@ -119,32 +119,32 @@ def vim_plugin_task(name, repo=nil)
task :default => name
end

vim_plugin_task "ack.vim", "http://github.com/mileszs/ack.vim.git"
vim_plugin_task "ack.vim", "git://github.com/mileszs/ack.vim.git"
vim_plugin_task "color-sampler", "http://www.vim.org/scripts/download_script.php?src_id=12179"
vim_plugin_task "conque", "http://conque.googlecode.com/files/conque_1.1.tar.gz"
vim_plugin_task "fugitive", "http://github.com/tpope/vim-fugitive.git"
vim_plugin_task "git", "http://github.com/tpope/vim-git.git"
vim_plugin_task "haml", "http://github.com/tpope/vim-haml.git"
vim_plugin_task "indent_object", "http://github.com/michaeljsmith/vim-indent-object.git"
vim_plugin_task "javascript", "http://github.com/pangloss/vim-javascript.git"
vim_plugin_task "markdown_preview", "http://github.com/robgleeson/vim-markdown-preview.git"
vim_plugin_task "nerdtree", "http://github.com/scrooloose/nerdtree.git"
vim_plugin_task "nerdcommenter", "http://github.com/scrooloose/nerdcommenter.git"
vim_plugin_task "surround", "http://github.com/tpope/vim-surround.git"
vim_plugin_task "fugitive", "git://github.com/tpope/vim-fugitive.git"
vim_plugin_task "git", "git://github.com/tpope/vim-git.git"
vim_plugin_task "haml", "git://github.com/tpope/vim-haml.git"
vim_plugin_task "indent_object", "git://github.com/michaeljsmith/vim-indent-object.git"
vim_plugin_task "javascript", "git://github.com/pangloss/vim-javascript.git"
vim_plugin_task "markdown_preview", "git://github.com/robgleeson/vim-markdown-preview.git"
vim_plugin_task "nerdtree", "git://github.com/scrooloose/nerdtree.git"
vim_plugin_task "nerdcommenter", "git://github.com/scrooloose/nerdcommenter.git"
vim_plugin_task "surround", "git://github.com/tpope/vim-surround.git"
vim_plugin_task "taglist", "http://vim.sourceforge.net/scripts/download_script.php?src_id=7701"
vim_plugin_task "vividchalk", "http://github.com/tpope/vim-vividchalk.git"
vim_plugin_task "supertab", "http://github.com/ervandew/supertab.git"
vim_plugin_task "cucumber", "http://github.com/tpope/vim-cucumber.git"
vim_plugin_task "textile", "http://github.com/timcharper/textile.vim.git"
vim_plugin_task "rails", "http://github.com/tpope/vim-rails.git"
vim_plugin_task "rspec", "http://github.com/taq/vim-rspec.git"
vim_plugin_task "vividchalk", "git://github.com/tpope/vim-vividchalk.git"
vim_plugin_task "supertab", "git://github.com/ervandew/supertab.git"
vim_plugin_task "cucumber", "git://github.com/tpope/vim-cucumber.git"
vim_plugin_task "textile", "git://github.com/timcharper/textile.vim.git"
vim_plugin_task "rails", "git://github.com/tpope/vim-rails.git"
vim_plugin_task "rspec", "git://github.com/taq/vim-rspec.git"
vim_plugin_task "zoomwin", "http://www.vim.org/scripts/download_script.php?src_id=9865"
vim_plugin_task "snipmate", "http://github.com/msanders/snipmate.vim.git"
vim_plugin_task "autoclose", "http://github.com/Townk/vim-autoclose.git"
vim_plugin_task "markdown", "http://github.com/tpope/vim-markdown.git"
vim_plugin_task "align", "http://github.com/tsaleh/vim-align.git"
vim_plugin_task "snipmate", "git://github.com/msanders/snipmate.vim.git"
vim_plugin_task "autoclose", "git://github.com/Townk/vim-autoclose.git"
vim_plugin_task "markdown", "git://github.com/tpope/vim-markdown.git"
vim_plugin_task "align", "git://github.com/tsaleh/vim-align.git"

vim_plugin_task "command_t", "http://github.com/wincent/Command-T.git" do
vim_plugin_task "command_t", "git://github.com/wincent/Command-T.git" do
sh "find ruby -name '.gitignore' | xargs rm"
Dir.chdir "ruby/command-t" do
if `rvm > /dev/null 2>&1` && $?.exitstatus == 1
Expand Down

0 comments on commit 0896d1b

Please sign in to comment.