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