Method: Umatic::Channel.open

Defined in:
lib/channel/channel.rb

.open(url) ⇒ Object



16
17
18
19
20
21
# File 'lib/channel/channel.rb', line 16

def self.open(url)
	@@channels.each do |c|
		return c.new(url) if c.supports? url
	end
	nil
end