2013-04-26 12:17:22 -04:00
|
|
|
require 'rspec/core/rake_task'
|
|
|
|
|
2013-05-04 16:32:47 -04: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-26 12:17:22 -04:00
|
|
|
|
|
|
|
task :default => :spec
|