Define task 'currentv' as print current script version

This commit is contained in:
raimon
2015-11-29 13:00:21 +09:00
parent 8679d62d7c
commit 53287411d5

View File

@@ -1,11 +1,17 @@
#!/usr/bin/env rake
task :ci => [:dump, :test]
task :ci => [:dump, :currentv, :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: