I have a gem unpacked (youtube_g) in vendor/gems which works ok from Rails when it's loaded.
I need to use this gem when I run delayed_job by calling
require 'youtube_g'
but I get this error::
MissingSourceFile: no such file to load -- youtube_g
from /Users/t/.rvm/gems/ruby-1.9.1-p378/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:182:in `require'
from /Users/t/.rvm/gems/ruby-1.9.1-p378/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:182:in `block in require'
from /Users/t/.rvm/gems/ruby-1.9.1-p378/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:547:in `new_constants_in'
from /Users/t/.rvm/gems/ruby-1.9.1-p378/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:182:in `require'
from (irb):2
from /Users/t/.rvm/rubies/ruby-1.9.1-p378/bin/irb:16:in `<main>'
any ideas how I can fix that?