mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-02 22:40:06 +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
|