mirror of
https://github.com/raimon49/requirements.txt.vim.git
synced 2026-01-30 20:05:22 +08:00
18 lines
236 B
Ruby
18 lines
236 B
Ruby
#!/usr/bin/env rake
|
|
|
|
task :ci => [:dump, :test]
|
|
|
|
task :dump do
|
|
sh 'vim --version'
|
|
end
|
|
|
|
task :currentv do
|
|
sh 'git ls | xargs grep -n \'Version:\''
|
|
end
|
|
|
|
task :test do
|
|
sh 'bundle exec vim-flavor test'
|
|
end
|
|
|
|
# vim: et sw=2 ts=2 sts=2:
|