I have two Rake tasks under the same namespace like following:
namespace :db do
task :first_task => :environment do
server_name='myserver'
connect_to(server_name)
end
task :second_task => :environment do
server_name='myserver'
do_something_with(server_name)
end
end
As you see, both tasks are under the same namespace and both tasks use server_name='myserver'
constant variable.
It really looks ugly to define the server_name
variable twice under the same namespace, how can I have one place defining this variable so both tasks can use it?