1
0
Fork 0
mirror of synced 2024-06-01 15:01:10 -04:00
ultimate-vim/bundle/vim-multiple-cursors/Rakefile
2014-05-09 21:28:39 +02:00

12 lines
235 B
Ruby

require 'rspec/core/rake_task'
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
task :default => :spec