rpl.rb/Rakefile
Gwenhael Le Moine 3666c19602
made a pass with rubocop
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
2023-01-05 15:17:19 +01:00

15 lines
208 B
Ruby

# frozen_string_literal: true
require 'rake/testtask'
Rake::TestTask.new do |t|
t.pattern = 'spec/*_spec.rb'
end
task :gem do
sh 'gem build rpl.gemspec'
end
task :run do
sh 'ruby -Ilib bin/rpl'
end