class PhoneSites::GsmArena::SearchResponse
Public Instance Methods
perform(name, method = 'get', options = {})
click to toggle source
Calls superclass method
PhoneSites::BaseResponse#perform
# File lib/phone_sites/gsm_arena/search_response.rb, line 5 def perform(name, method = 'get', options = {}) url = "http://www.gsmarena.com/results.php3?sQuickSearch=yes&sName=" + URI.encode(name) response = super(url, method, options) Nokogiri::HTML(response.body).css('.makers li a').map do |elem| PhoneSites::GsmArena::PhoneModel.new(elem) end end