vim files added

This commit is contained in:
Luke
2018-01-21 19:52:37 -07:00
parent fe22a1e233
commit 51ef581bde
31 changed files with 5760 additions and 0 deletions

View File

@@ -0,0 +1,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