62e125f76e
subrepo: subdir: "dotfiles/.vim/plugged/vim-multiple-cursors" merged: "6456718e" upstream: origin: "https://github.com/terryma/vim-multiple-cursors.git" branch: "master" commit: "6456718e" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
11 lines
235 B
Ruby
11 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
|