summaryrefslogtreecommitdiffstats
path: root/.vim/bundle/vim-multiple-cursors/Rakefile
blob: 7150a2872fd5eadf97ff9b6a39c50665bc29771d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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