trabajo-afectivo/app/models/channel.rb

21 lines
461 B
Ruby
Raw Normal View History

2012-04-10 14:06:46 +00:00
class Channel < ActiveRecord::Base
store :options
def self.send2
# find outbound
end
2012-04-10 14:06:46 +00:00
def self.fetch
channels = Channel.where( 'active = ? AND area LIKE ?', true, '%::Inbound' )
channels.each { |channel|
2012-04-10 14:06:46 +00:00
begin
c = eval 'Channel::' + channel[:adapter] + '.new'
2012-04-10 14:06:46 +00:00
c.fetch(channel)
rescue Exception => e
puts "can't use " + 'Channel::' + channel[:adapter]
2012-04-10 14:06:46 +00:00
puts e.inspect
end
}
end
end