i have been trying to include a gem located on github to my current app. The gem has a rake file that i want to able to access from my app. But i keep getting load errors.
Okay, I found a solution for this problem if anyone is interested:
# Rails.root/Rakefile spec = Gem::Specification.find_by_name 'test' load "#{spec.gem_dir}/tasks/deploy.rake"
That's all I needed to say in my Rakefile!