How do I run this rake file in terminal/console?
my statistik.rake in lib/tasks
desc \"Importer statistikker\"
namespace :reklamer do
task :iqmedie
In rails 4.2 the above methods didn't work.
To Run all the tasks in that file assign the following inside the same file and run rake all
task :all => [:iqmedier, :euroads, :mikkelsen, :orville ] do #This will print all the tasks o/p on the screen
end