I recently tested the Queue_Classic gem in my app. Part of the setup is running this migration:
require 'queue_classic'
class AddQueueClassic < ActiveRecord::Migration
def self.up
QC::Setup.create
end
def self.down
QC::Setup.drop
end
end
Now I'd like to switch to a different queueing system, but I'm afraid that I won't be able to remove queue_classic from the Gemfile. Even if I generate a migration that just runs:
drop_table :queue_classic_jobs
Won't rake db:migrate
still complain when it sees the first instance of require 'queue_classic'
and QC::Setup.create
but can't find the queue_classic gem?