up vote 87 down vote favorite
52
share [g+] share [fb]

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?

link|improve this question

2  
rakefile rdoc – Brian Maltzan May 19 '11 at 15:57
1  
For anyone who comes here from google, I would recommend reading the docs: rake.rubyforge.org/files/doc/rakefile_rdoc.html. These answers are getting outdated. – jcollum 2 days ago
feedback

5 Answers

up vote 179 down vote accepted

You can specify formal arguments in rake by adding symbol arguments to the task call. For example:

require 'rake'

task :my_task, :arg1, :arg2 do |t, args|
  puts "Args were: #{args}"
end

task :invoke_my_task do
  Rake.application.invoke_task("my_task[1, 2]")
end

# or if you prefer this syntax...
task :invoke_my_task_2 do
  Rake::Task[:my_task].invoke(3, 4)
end

# a task with prerequisites passes its 
# arguments to it prerequisites
task :with_prerequisite, :arg1, :arg2, :needs => :my_task

# equivalently...
task :with_prerequisite_2, [:arg1, :arg2] => :my_task

# to specify default values, 
# we take advantage of args being a Rake::TaskArguments object
task :with_defaults, :arg1, :arg2 do |t, args|
  args.with_defaults(:arg1 => :default_1, :arg2 => :default_2)
  puts "Args with defaults were: #{args}"
end

Then, from the command line:

F:\test\rake>rake my_task[1,2]
(in F:/test/rake)
Args were: {:arg1=>"1", :arg2=>"2"}

F:\test\rake>rake "my_task[1, 2]"
(in F:/test/rake)
Args were: {:arg1=>"1", :arg2=>"2"}

F:\test\rake>rake invoke_my_task
(in F:/test/rake)
Args were: {:arg1=>"1", :arg2=>"2"}

F:\test\rake>rake invoke_my_task_2
(in F:/test/rake)
Args were: {:arg1=>3, :arg2=>4}

F:\test\rake>rake with_prerequisite[5,6]
(in F:/test/rake)
Args were: {:arg1=>"5", :arg2=>"6"}

F:\test\rake>rake with_prerequisite_2[7,8]
(in F:/test/rake)
Args were: {:arg1=>"7", :arg2=>"8"}

F:\test\rake>rake with_defaults
(in F:/test/rake)
Args with defaults were: {:arg1=>:default_1, :arg2=>:default_2}

F:\test\rake>rake with_defaults['x','y']
(in F:/test/rake)
Args with defaults were: {:arg1=>"x", :arg2=>"y"}

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 rake.rb, it appears that rake does not parse task strings to extract arguments for prerequisites, so you can't do task :t1 => "dep[1,2]". The only way to specify different arguments for a prerequisite would be to invoke it explicitly within the dependent task action, as in :invoke_my_task and :invoke_my_task_2.

link|improve this answer
This doesn't tell me how to run the rake task with arguments from another task. It covers only command line usage – Tilendor May 6 '09 at 16:47
You're right. I have edited the answer to provide more thorough examples. – Nick Desjardins May 7 '09 at 18:56
1  
To invoke a task within a namespace simpy do: Rake::Task['namespace:task'].invoke – gaqzi Aug 7 '09 at 1:22
Wow, Nick. I wish I could vote this up twice. Thanks! – Peeja Apr 22 '10 at 16:57
Actually amazed, I've looked for the answer to this so many times and it's always been rake task arg1=2 arg2=3. This is much simpler when the arguments are in series. – opsb Oct 21 '10 at 10:30
show 4 more comments
feedback

In addition to answer by kch (I didn't find how to leave a comment to that, sorry):

You don't have to specify variables as ENV variables before the rake command. You can just set them as usual command line parameters like that:

rake mytask var=foo

and access those from you rake file as ENV variables like such:

p ENV['var'] # => "foo"

link|improve this answer
feedback

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:

desc 'Task Description'
task :task_name => [:depends_on_taskA, :depends_on_taskB] do
  #interesting things
end

To pass arguments, do three things:

  1. Add the argument names after the task name, separated by commas.
  2. Put the dependencies at the end using :needs => [...]
  3. Place |t, args| after the do. (t is the object for this task)

To access the arguments in the script, use args.arg_name

desc 'Takes arguments task'
task :task_name, :display_value, :display_times, :needs => [:depends_on_taskA, :depends_on_taskB] do |t, args|
  args.display_times.to_i.times do
    puts args.display_value
  end
end

To call this task from the command line, pass it the arguments in []s

rake task_name['Hello',4]

will output

Hello
Hello
Hello
Hello

and if you want to call this task from another task, and pass it arguments, use invoke

task :caller do
  puts 'In Caller'
  Rake::Task[:task_name].invoke('hi',2)
end

then the command

rake caller

will output

In Caller
hi
hi

I haven't found a way to pass arguments as part of a dependency, as the following code breaks:

task :caller => :task_name['hi',2]' do
   puts 'In Caller'
end
link|improve this answer
1  
The format for this functionality has changed as this warning states: 'task :t, arg, :needs => [deps]' is deprecated. Please use 'task :t, [args] => [deps]' instead. – madh Jan 15 at 19:54
feedback

Another commonly used option is to pass environment variables. In your code you read them via ENV['VAR'], and can pass them right before the rake command, like

$ VAR=foo rake mytask
link|improve this answer
Frankly I was hoping for rake task -- these --go --to -a program and my task could get them from ARGV. Unfortunately I'm not sure if that's possible however I am currently using your solution: rake var1=val1 var2=val2 – JasonSmith Aug 3 '10 at 11:24
@jhs: rake blah -- --these --go --to --a-program (note the -- to tell rake that its switches have ended), see stackoverflow.com/questions/5086224/… – mu is too short Feb 27 '11 at 4:39
feedback

Actually @Nick Desjardins answered perfect. But just for education: you can use dirty approach: using ENV argument

task :my_task do
  myvar = ENV['myvar']
  puts "myvar: #{myvar}"
end 

rake my_task myvar=10
#=> myvar: 10
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.