5 6 7 8
# File 'lib/film_on/helpers/channel_helper.rb', line 5 def convert_channel(json) hash = JSON.parse(json) FilmOn::Channel.new(hash) end
10 11 12 13
# File 'lib/film_on/helpers/channel_helper.rb', line 10 def convert_channels(json) hash = JSON.parse(json) hash.map{|ch| FilmOn::Channel.new(ch)} end