I know we can run a task from within a rakefile like this:
Rake::Task['my_task'].execute()
How to do the same while passing arguments ?
I know we can run a task from within a rakefile like this:
Rake::Task['my_task'].execute()
How to do the same while passing arguments ?
Provided you have the following task:
You can call it using
or