Add the below command into your pre existing cucumber rake task, within the namespace
block.
Cucumber::Rake::Task.new(:tags) do |t|
t.cucumber_opts = "--tags #{ ARGV.last }"
end
All this does is add the --tags option to the executed command line.
usage: rake cucumber:tags @mytag