I'm building a gem with a list of rake tasks. I have this:
#/lib/tasks/my_gem.rake:
namespace :my_gem do
task :task1 do
puts "Hello"
end
end
I install the gem to a rails application and run rake -T. And there's no task "task1" or anything related to "my_gem".