module Drom
Constants
- VERSION
Public Class Methods
get_single_listing(url)
click to toggle source
# File lib/drom.rb, line 12 def self.get_single_listing(url) @client = Client.new page = @client.get(url) Drom::ListingParser.new(url, page).parsed end
search(options, &block)
click to toggle source
# File lib/drom.rb, line 8 def self.search(options, &block) Drom::Search.new(options, &block) end