Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
autorake / examples / justinst / Rakefile
Size: Mime:
#
#  Rakefile  --  install the files
#

require "autorake"

task :default

task :clean


# Installers

vims = %w(
  plugin/ruby.vim
  plugin/yesno.vim
)

if has? :dial then
  vims.concat %w(
    plugin/dial.vim
  )
end

if Process.uid == 0 then
  ug = { :user => parm[ :user], :group => parm[ :group] }
end

task :install do
  dst = expand "VIMFILES"
  puts "Installing files to '#{dst}'."
end

installer vims, "VIMFILES", ug