Skip to content

Instantly share code, notes, and snippets.

@dmix
Created September 11, 2008 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dmix/10309 to your computer and use it in GitHub Desktop.
Save dmix/10309 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'scrubyt'
Scrubyt.logger = Scrubyt::Logger.new
market_data = Scrubyt::Extractor.define do
fetch 'http://Salesforce.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.salesforce.com/products/sales-force-automation/sales-management/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://Right90.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.right90.com/what-we-do/index.php'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.right90.com/what-we-do/whydifferent.php'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.right90.com/what-we-do/Business-benefits.php'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.right90.com/what-we-do/Sales-operations.php'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.pivotalcrm.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.pivotalcrm.com/en/Products/Sales-Force-Automation.aspx'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.pivotalcrm.com/en/Industry-Solutions/Manufacturing.aspx'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.sagecrmsolutions.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.sagecrmsolutions.com/products/sagecrmdotcom'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.sagecrmsolutions.com/products/sagecrmdotcom/sales'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.netsuite.com/portal/home.shtml'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.netsuite.com/portal/products/crm_plus/main.shtml'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.netsuite.com/portal/products/crm_plus/sfa.shtml'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://Entellium.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://goldmine.com/micro.aspx?id=4398'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://goldmine.com/micro.aspx?id=4395'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://goldmine.com/micro.aspx?id=4398'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://Maximizer.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://maximizer.com/solutions/maxcrm/sfa/index.html'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://Softfront.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://www.soffront.com/CRM/Solutions/SalesAutomation.asp'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://Aplicor.com/'
contents "/html/body"
end
puts market_data.to_xml
market_data = Scrubyt::Extractor.define do
fetch 'http://aplicor.com/salesforce.htm'
contents "/html/body"
end
puts market_data.to_xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment