Rakefile in ruby-enum-0.9.0 vs Rakefile in ruby-enum-1.0.0
- old
+ new
@@ -14,5 +14,12 @@
require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop)
task default: %i[rubocop spec]
+
+namespace :benchmark do
+ desc 'Run benchmark for the Ruby::Enum::Case'
+ task :case do
+ require_relative 'benchmarks/case'
+ end
+end