dotfiles-mirror/config/nvim/vim-graft/Rakefile
2025-09-30 07:28:33 +03:30

13 lines
292 B
Ruby

task :default do
begin
load "./config.rb" # loads CONFIG
if defined?(CONFIG) && CONFIG[:runtime] && CONFIG[:plugins]
system("ruby graft.rb")
else
puts("Config is not appropriate.")
exit 1
end
rescue => e
puts("Task failed: #{e.message}")
end
end