Method: Recluse::Queue#run

Defined in:
lib/recluse/queue.rb

#runObject

Run queue



67
68
69
70
71
72
# File 'lib/recluse/queue.rb', line 67

def run
  until @links.empty?
    link = @links.shift
    run_link link
  end
end