I've got a rake task that I am making that needs to insert a value into multiple databases.
I'd like to be able to pass this value into the rake task from the command line, or from another rake task, how can I do this?
|
8
|
I've got a rake task that I am making that needs to insert a value into multiple databases. I'd like to be able to pass this value into the rake task from the command line, or from another rake task, how can I do this?
|
|||
|
|
|
|
You can specify formal arguments in rake by adding symbol arguments to the task call. For example:
Then, from the command line:
As demonstrated in the second example, if you want to use spaces, the quotes around the target name are necessary to keep the shell from splitting up the arguments at the space. Looking at the code in |
||||||
|
|
|
I've found the answer from these two websites: Net Maniac and Aimred. You need to have version > 0.8 of rake to use this technique The normal rake task description is this:
To pass arguments, do three things:
To access the arguments in the script, use args.arg_name
To call this task from the command line, pass it the arguments in []s
will output
and if you want to call this task from another task, and pass it arguments, use invoke
then the command
will output
I haven't found a way to pass arguments as part of a dependency, as the following code breaks:
|
||
|
|
|
|
Another commonly used option is to pass environment variables. In your code you read them via
|
||
|
|