jeffkreeftmeijer / navvy

Simple Ruby background job processor inspired by delayed_job, but aiming for database agnosticism.
https://jeffkreeftmeijer.com
Other
215 stars 23 forks source link

undefined method `configure' for Navvy:Module #1

Closed bitzesty closed 14 years ago

bitzesty commented 14 years ago

Trying to run a worker after following the setup guide for rails 2.3+

jeffkreeftmeijer commented 14 years ago

Hi,

Thanks for creating the issue, the docs were wrong. Instead of putting this in config/initializers/navvy.rb;

require 'navvy/job/active_record'

Do this;

require 'navvy'
require 'navvy/job/active_record'

I've updated the wiki page too -> http://wiki.github.com/jeffkreeftmeijer/navvy/installation-on-rails-2x

Thanks!