mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 07:20:04 +08:00
9 lines
175 B
Ruby
9 lines
175 B
Ruby
task :default do
|
|
sh 'rspec spec'
|
|
end
|
|
|
|
desc "Prepare archive for deployment"
|
|
task :archive do
|
|
sh 'zip -r ~/splitjoin.zip autoload/ doc/splitjoin.txt ftplugin/ plugin/'
|
|
end
|