libin (owner)

Fork Of

Revisions

gist: 10365 Download_button fork
public
Public Clone URL: git://gist.github.com/10365.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
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