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