voidrice/.vim/bundle/vim-multiple-cursors/Rakefile

12 lines
235 B
Text
Raw Normal View History

2018-01-22 02:52:37 +00:00
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