dotfiles/vim/plugins/vim-airline/Rakefile

15 lines
169 B
Ruby
Raw Normal View History

2018-04-05 13:06:54 +02:00
#!/usr/bin/env rake
task :default => [:test]
task :ci => [:dump, :test]
task :dump do
sh 'vim --version'
end
task :test do
sh 'bundle exec vim-flavor test'
end