From 1d1b3511e4c523458d78653cb8781a5328600387 Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Thu, 24 Oct 2024 11:32:34 +1100 Subject: Implement main executable and CLI --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index fa8633d..51dcb8a 100644 --- a/Rakefile +++ b/Rakefile @@ -3,6 +3,11 @@ require 'rake' require 'rspec/core/rake_task' +desc 'Run the application' +task :run do + sh 'ruby ./bin/family_tree.rb ./data/actions.txt' +end + RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = 'spec/**/*_spec.rb' end -- cgit v1.2.3