1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/vim-multiple-cursors/Rakefile

12 lines
235 B
Ruby
Raw Normal View History

2013-04-27 00:17:22 +08:00
require 'rspec/core/rake_task'
2013-05-05 04:32:47 +08:00
RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = 'spec/multiple_cursors_spec.rb'
end
RSpec::Core::RakeTask.new(:benchmark) do |t|
t.pattern = 'spec/benchmark_spec.rb'
end
2013-04-27 00:17:22 +08:00
task :default => :spec