diff options
| author | Szymon Szukalski <szymon@skas.io> | 2024-10-24 11:32:34 +1100 |
|---|---|---|
| committer | Szymon Szukalski <szymon@skas.io> | 2024-10-24 11:32:34 +1100 |
| commit | 1d1b3511e4c523458d78653cb8781a5328600387 (patch) | |
| tree | f5136cae86571c104c9f4728ef314da898e02067 /Rakefile | |
| parent | 9986c89c2122f178148d690be336217f754d5633 (diff) | |
Implement main executable and CLI
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |
