PageRankr 4.1.1 → 4.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +2 -2
- data/CHANGELOG.md +3 -0
- data/Gemfile +2 -2
- data/README.md +12 -10
- data/lib/page_rankr/ranks.rb +2 -0
- data/lib/page_rankr/ranks/moz_rank.rb +29 -0
- data/lib/page_rankr/ranks/page_authority.rb +29 -0
- data/lib/page_rankr/version.rb +1 -1
- data/spec/fixtures/vcr_cassettes/failure_ranks.yml +197 -1
- data/spec/fixtures/vcr_cassettes/success_ranks.yml +371 -17
- data/spec/page_rankr_spec.rb +11 -2
- metadata +88 -54
- data/.rvmrc +0 -1
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 08ecb93411dcd16ff1e1b1aaaf2f4a9ea701aefc
|
4
|
+
data.tar.gz: e90257abb4d4607f3cbbd18fca0ec6c43ab35980
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e3c2cefa347769417b30bb57e29174d545fc1648195c0f334635ad04cde5da401b0e66380bc8c0fff8978fe92b8a278aea6462f1f7cf53696b45e4c08cdc6c04
|
7
|
+
data.tar.gz: f6134f961a694706dc9d996c88688bd7a3fcf32516c14913bf5fde88c795caf761d98b26ec9426ec7080a4c2e3b406072e514854836bab4de27fb9df174f0df8
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
page_rankr
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.0.0
|
data/.travis.yml
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
rvm:
|
2
|
-
- 1.9.
|
3
|
-
-
|
2
|
+
- 1.9.3
|
3
|
+
- 2.0.0
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1
|
-
# PageRankr [![Build Status](
|
1
|
+
# PageRankr [![Build Status](https://api.travis-ci.org/blatyo/page_rankr.png)](http://travis-ci.org/blatyo/page_rankr)
|
2
2
|
|
3
3
|
Provides an easy way to retrieve Google Page Rank, Alexa Rank, backlink counts, and index counts.
|
4
4
|
|
5
|
-
__Note: Version ~> 2.0 and ~> 3.0 used typheous internally which caused memory leak issues and failures on windows. 4.0.0 changes the implementation to use a Net::HTTP based library for better compatability.__
|
5
|
+
__Note: Version ~> 2.0 and ~> 3.0 used typheous internally which caused memory leak issues and failures on windows. 4.0.0 changes the implementation to use a Net::HTTP based library for better compatability.__
|
6
6
|
|
7
|
-
__Note: Version >= 4.1.0 no longer actively maintains compatibility with Ruby 1.8.X. It will probably still work for the time being.__
|
7
|
+
__Note: Version >= 4.1.0 no longer actively maintains compatibility with Ruby 1.8.X. It will probably still work for the time being.__
|
8
|
+
|
9
|
+
__Note: Version >= 4.2.0 no longer actively maintains compatibility with Ruby < 1.9.3. It will probably still work, but you may need to specify older versions for gems this library depends on in your Gemfile.__
|
8
10
|
|
9
11
|
Check out a little [web app][1] I wrote up that uses it or look at the [source][2].
|
10
12
|
|
@@ -98,20 +100,20 @@ Ranks are ratings assigned to specify how popular a site is. The most famous exa
|
|
98
100
|
If you don't specify a rank provider, then all of them are used.
|
99
101
|
|
100
102
|
``` ruby
|
101
|
-
PageRankr.ranks('www.google.com', :alexa_us, :alexa_global, :google)
|
102
|
-
#=> {:alexa_us=>1, :alexa_global=>1, :alexa_country=>1, :google=>10}
|
103
|
+
PageRankr.ranks('www.google.com', :alexa_us, :alexa_global, :google, :moz_rank, :page_authority)
|
104
|
+
#=> {:alexa_us=>1, :alexa_global=>1, :alexa_country=>1, :google=>10, :moz_rank => 8, :page_authority => 97}
|
103
105
|
|
104
106
|
# this also gives the same result
|
105
107
|
PageRankr.ranks('www.google.com')
|
106
|
-
#=> {:alexa_us=>1, :alexa_global=>1, :alexa_country=>1, :google=>10}
|
108
|
+
#=> {:alexa_us=>1, :alexa_global=>1, :alexa_country=>1, :google=>10, :moz_rank => 8, :page_authority => 97}
|
107
109
|
```
|
108
110
|
|
109
111
|
You can also use the alias `rank` instead of `ranks`.
|
110
112
|
|
111
|
-
Valid rank trackers are: `:alexa_country, :alexa_global, :alexa_us, :google`. To get this you can do:
|
113
|
+
Valid rank trackers are: `:alexa_country, :alexa_global, :alexa_us, :google, :moz_rank, :page_authority`. To get this you can do:
|
112
114
|
|
113
115
|
``` ruby
|
114
|
-
PageRankr.rank_trackers #=> [:alexa_country, :alexa_global, :alexa_us, :google]
|
116
|
+
PageRankr.rank_trackers #=> [:alexa_country, :alexa_global, :alexa_us, :google, :moz_rank, :page_authority]
|
115
117
|
```
|
116
118
|
|
117
119
|
Alexa ranks are descending where 1 is the most popular. Google page ranks are in the range 0-10 where 10 is the most popular. If a site is unindexed then the rank will be nil.
|
@@ -142,7 +144,7 @@ Also, once a tracker has run three values will be accessible from it:
|
|
142
144
|
|
143
145
|
## Rate limiting and proxies
|
144
146
|
|
145
|
-
One of the annoying things about each of these services is that they really don't like you scraping data from them. In order to deal with this issue, they throttle traffic from a single machine. The simplest way to get around this is to use proxy machines to make the requests.
|
147
|
+
One of the annoying things about each of these services is that they really don't like you scraping data from them. In order to deal with this issue, they throttle traffic from a single machine. The simplest way to get around this is to use proxy machines to make the requests.
|
146
148
|
|
147
149
|
In PageRankr >= 3.2.0, this is much simpler. The first thing you'll need is a proxy service. Two are provided [here](https://github.com/blatyo/page_rankr/tree/master/lib/page_rankr/proxy_services). A proxy service must define a `proxy` method that takes two arguments. It should return a string like `user:password@192.168.1.1:50501`.
|
148
150
|
|
@@ -237,4 +239,4 @@ Original inspiration from:
|
|
237
239
|
|
238
240
|
## Copyright
|
239
241
|
|
240
|
-
Copyright (c) 2010 Allen Madsen. See LICENSE for details.
|
242
|
+
Copyright (c) 2010 Allen Madsen. See LICENSE for details.
|
data/lib/page_rankr/ranks.rb
CHANGED
@@ -3,6 +3,8 @@ require File.expand_path("../ranks/alexa_us", __FILE__)
|
|
3
3
|
require File.expand_path("../ranks/alexa_global", __FILE__)
|
4
4
|
require File.expand_path("../ranks/alexa_country", __FILE__)
|
5
5
|
require File.expand_path("../ranks/google", __FILE__)
|
6
|
+
require File.expand_path('../ranks/moz_rank', __FILE__)
|
7
|
+
require File.expand_path('../ranks/page_authority', __FILE__)
|
6
8
|
|
7
9
|
module PageRankr
|
8
10
|
class Ranks
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require File.expand_path('../../rank', __FILE__)
|
2
|
+
|
3
|
+
module PageRankr
|
4
|
+
class Ranks
|
5
|
+
class MozRank
|
6
|
+
include Rank
|
7
|
+
|
8
|
+
def url
|
9
|
+
'http://bagics.com/moz-rank.html'
|
10
|
+
end
|
11
|
+
|
12
|
+
def params
|
13
|
+
{:domain => tracked_url}
|
14
|
+
end
|
15
|
+
|
16
|
+
def xpath
|
17
|
+
'//*[@id="resId"]'
|
18
|
+
end
|
19
|
+
|
20
|
+
def supported_components
|
21
|
+
[:subdomain, :path, :query]
|
22
|
+
end
|
23
|
+
|
24
|
+
def name
|
25
|
+
:ranks_moz_rank
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require File.expand_path('../../rank', __FILE__)
|
2
|
+
|
3
|
+
module PageRankr
|
4
|
+
class Ranks
|
5
|
+
class PageAuthority
|
6
|
+
include Rank
|
7
|
+
|
8
|
+
def url
|
9
|
+
'http://bagics.com/page-authority.html'
|
10
|
+
end
|
11
|
+
|
12
|
+
def params
|
13
|
+
{:domain => tracked_url}
|
14
|
+
end
|
15
|
+
|
16
|
+
def xpath
|
17
|
+
'//*[@id="resId"]'
|
18
|
+
end
|
19
|
+
|
20
|
+
def supported_components
|
21
|
+
[:subdomain, :path, :query]
|
22
|
+
end
|
23
|
+
|
24
|
+
def name
|
25
|
+
:ranks_page_authority
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/page_rankr/version.rb
CHANGED
@@ -44,7 +44,7 @@ http_interactions:
|
|
44
44
|
connection:
|
45
45
|
- close
|
46
46
|
body:
|
47
|
-
encoding:
|
47
|
+
encoding: ISO-8859-1
|
48
48
|
string: ''
|
49
49
|
http_version: '1.1'
|
50
50
|
recorded_at: Thu, 14 Feb 2013 01:40:13 GMT
|
@@ -135,4 +135,200 @@ http_interactions:
|
|
135
135
|
FLAGS=\"\" HOST=\"please-dont-register-a-site-that-breaks-this-test.com\">\n</SD>\n\n</ALEXA>"
|
136
136
|
http_version: '1.1'
|
137
137
|
recorded_at: Thu, 14 Feb 2013 01:40:13 GMT
|
138
|
+
- request:
|
139
|
+
method: get
|
140
|
+
uri: http://bagics.com/moz-rank.html?domain=please-dont-register-a-site-that-breaks-this-test.com
|
141
|
+
body:
|
142
|
+
encoding: US-ASCII
|
143
|
+
string: ''
|
144
|
+
headers:
|
145
|
+
user-agent:
|
146
|
+
- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.56.5 (KHTML,
|
147
|
+
like Gecko) Version/5.1.6 Safari/534.56.5
|
148
|
+
response:
|
149
|
+
status:
|
150
|
+
code: 200
|
151
|
+
message: !binary |-
|
152
|
+
T0s=
|
153
|
+
headers:
|
154
|
+
!binary "ZGF0ZQ==":
|
155
|
+
- !binary |-
|
156
|
+
U2F0LCAwMiBOb3YgMjAxMyAyMjozOTo1NyBHTVQ=
|
157
|
+
!binary "c2VydmVy":
|
158
|
+
- !binary |-
|
159
|
+
QXBhY2hl
|
160
|
+
!binary "dmFyeQ==":
|
161
|
+
- !binary |-
|
162
|
+
QWNjZXB0LUVuY29kaW5n
|
163
|
+
!binary "Y2FjaGUtY29udHJvbA==":
|
164
|
+
- !binary |-
|
165
|
+
4oCccHVibGlj4oCd
|
166
|
+
!binary "Y29ubmVjdGlvbg==":
|
167
|
+
- !binary |-
|
168
|
+
Y2xvc2U=
|
169
|
+
!binary "dHJhbnNmZXItZW5jb2Rpbmc=":
|
170
|
+
- !binary |-
|
171
|
+
Y2h1bmtlZA==
|
172
|
+
!binary "Y29udGVudC10eXBl":
|
173
|
+
- !binary |-
|
174
|
+
dGV4dC9odG1s
|
175
|
+
body:
|
176
|
+
encoding: US-ASCII
|
177
|
+
string: ! "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html
|
178
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<title>Check
|
179
|
+
MOZ Rank of Domain for FREE | Bagics.com | All In One SEO Companion</title>\n<meta
|
180
|
+
name=\"description\" content=\"Moz Rank Checker - WhoIs LookUp Check domain
|
181
|
+
availability Check Page Rank Check PageRank DMOZ directory checker Yahoo
|
182
|
+
directory checker Proxy servers Check domain age Check Alexa Rank Domain
|
183
|
+
IP lookup Find domain owner Check Domain Authority Check Page Authority
|
184
|
+
\ Check MozTrust Check mozRank Expired Domains Backlinks checker Check
|
185
|
+
Link Popularity \"/>\n\n<meta name=\"keywords\" content=\"WhoIs LookUp,Check
|
186
|
+
domain availability,Check Page Rank,Check PageRank,DMOZ directory checker,Yahoo
|
187
|
+
directory checker,Proxy servers,Check domain age,Check Alexa Rank ,Check Domain
|
188
|
+
IP,lookup,Find domain owner ,Check domain Authority,Check Page Authority,Check
|
189
|
+
MozTrust,Check mozRank,Expired Domains,Backlinks checker,Check Link Popularity
|
190
|
+
\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
|
191
|
+
/>\n<link href=\"css/style.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<div
|
192
|
+
id=\"container\">\n<div id=\"main\">\n<div id=\"topbanner\"></div>\n<div id=\"menu\"><center>\n\t\n<a
|
193
|
+
href=\"index.html\" title=\"bagics home page\">Home</a>\n<a href=\"whois.html\">WhoIs
|
194
|
+
LookUp</a>\n<a href=\"domainchecker.html\">Check domain availability</a>\n<a
|
195
|
+
href=\"pr.html\">Check Page Rank</a>\n<a href=\"alexarankchecker.html\">Check
|
196
|
+
Alexa Rank</a>\n<a href=\"domain-authority.html\">Check Domain Authority</a>\n<a
|
197
|
+
href=\"page-authority.html\">Check Page Authority</a>\n<a href=\"yahoodirchecker.html\">Yahoo
|
198
|
+
Directory check</a>\n<a href=\"alexabacklinkcheck.html\">Alexa Backlinks Check</a>\n<a
|
199
|
+
href=\"bingindexcheck.html\">Bing Index Check</a>\n<a href=\"moz-rank.html\">MOZ-Rank
|
200
|
+
Check</a>\n<a href=\"dofollow-links.html\">Dofollow Backlinks Check</a>\n<a
|
201
|
+
href=\"total-back-links.html\">Total Backlinks Check</a>\n<a href=\"fake-pr-check.html\">Fake
|
202
|
+
PR Check</a>\n<a href=\"domain-age.html\">Domain Age Check</a>\n<a href=\"site-value.html\">Estimated
|
203
|
+
Site Value</a>\n<a href=\"google-bot-access.html\">Google Bot Access Check</a>\n<a
|
204
|
+
href=\"get-technorati-rank.html\">Technorati rank Check</a>\n\n\t<!--<br />\n\t<a
|
205
|
+
href=\"./pr.php\">Check PageRank</a>\n\t<a href=\"#\">DMOZ directory checker</a>
|
206
|
+
\n\t<a href=\"#\">Yahoo directory checker</a> \n\t<a href=\"#\">Proxy servers</a>
|
207
|
+
\n\t<br />\n\t<a href=\"#\">Check domain age</a>\n\t<a href=\"#\">Check Alexa
|
208
|
+
Rank</a> \n\t<a href=\"#\">Domain IP lookup</a>\n\t<a href=\"#\">Find domain
|
209
|
+
owner</a>\n\t<br />\n\t<a href=\"#\">Check Domain Authority</a>\n\t<a href=\"#\">Check
|
210
|
+
Page Authority</a>\n\t<a href=\"#\">Check MozTrust</a>\n\t<a href=\"#\">Check
|
211
|
+
mozRank</a>\n\t<br />\n\t<a href=\"#\" class=\"updated\">Expired Domains</a>\n\t<a
|
212
|
+
href=\"#\">Backlinks checker</a>\n\t<a href=\"#\">Check Link Popularity</a>\n\t\t<br
|
213
|
+
/> -->\n\n</div>\n<div id=\"content\">\n<h1>Check MOZ RANK of Domain.</h1>\n<p>Here,
|
214
|
+
You can quickly check the MOZ RANKof your favorite sites. Just put your domain
|
215
|
+
name below and click CHECK button.</p>\n\n<div class=\"pr\">\n<form action=\"/moz-rank.html\"
|
216
|
+
method=\"post\">\nURL: <input name=\"domain\" type=\"text\" id=\"domain\"
|
217
|
+
value=\"\" maxlength=\"300\" class=\"prf\" size=\"45\">\n<input type=\"submit\"
|
218
|
+
name=\"Submit\" value=\"CHECK\" >\n</form></div>\n\n<div class=\"seomozResult\">\n\t\t\t<strong
|
219
|
+
class=\"dac\" id=\"resId\">0</strong>\n\t\t\t<h3 class=\"daa\">Moz Rank</h3>\t\t\t\n\t\t\t<b
|
220
|
+
id=\"urlId\">please-dont-register-a-site-that-breaks-this-test.com</b>\n\t\t\t</div></div>\n<div
|
221
|
+
class=\"div\"></div>\n</div>\n\n\n\t\n<div id=\"r\"></div>\n<div id=\"credits\">\n<p>Copyright
|
222
|
+
by <a href=\"http://bagics.com\">Bagics</a></p>\n<p>©2012, All rights
|
223
|
+
reserved.</p></div> \n\n\n\n</div><script type=\"text/javascript\">\n\n var
|
224
|
+
_gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-20641732-23']);\n _gaq.push(['_setDomainName',
|
225
|
+
'bagics.com']);\n _gaq.push(['_setAllowLinker', true]);\n _gaq.push(['_trackPageview']);\n\n
|
226
|
+
\ (function() {\n var ga = document.createElement('script'); ga.type =
|
227
|
+
'text/javascript'; ga.async = true;\n ga.src = ('https:' == document.location.protocol
|
228
|
+
? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';\n var s =
|
229
|
+
document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga,
|
230
|
+
s);\n })();\n\n</script></body></html> name="
|
231
|
+
http_version: !binary |-
|
232
|
+
MS4x
|
233
|
+
recorded_at: Sat, 02 Nov 2013 22:40:06 GMT
|
234
|
+
- request:
|
235
|
+
method: get
|
236
|
+
uri: http://bagics.com/page-authority.html?domain=please-dont-register-a-site-that-breaks-this-test.com
|
237
|
+
body:
|
238
|
+
encoding: US-ASCII
|
239
|
+
string: ''
|
240
|
+
headers:
|
241
|
+
user-agent:
|
242
|
+
- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.56.5 (KHTML,
|
243
|
+
like Gecko) Version/5.1.6 Safari/534.56.5
|
244
|
+
response:
|
245
|
+
status:
|
246
|
+
code: 200
|
247
|
+
message: !binary |-
|
248
|
+
T0s=
|
249
|
+
headers:
|
250
|
+
!binary "ZGF0ZQ==":
|
251
|
+
- !binary |-
|
252
|
+
U2F0LCAwMiBOb3YgMjAxMyAyMjo0ODowNCBHTVQ=
|
253
|
+
!binary "c2VydmVy":
|
254
|
+
- !binary |-
|
255
|
+
QXBhY2hl
|
256
|
+
!binary "dmFyeQ==":
|
257
|
+
- !binary |-
|
258
|
+
QWNjZXB0LUVuY29kaW5n
|
259
|
+
!binary "Y2FjaGUtY29udHJvbA==":
|
260
|
+
- !binary |-
|
261
|
+
4oCccHVibGlj4oCd
|
262
|
+
!binary "Y29ubmVjdGlvbg==":
|
263
|
+
- !binary |-
|
264
|
+
Y2xvc2U=
|
265
|
+
!binary "dHJhbnNmZXItZW5jb2Rpbmc=":
|
266
|
+
- !binary |-
|
267
|
+
Y2h1bmtlZA==
|
268
|
+
!binary "Y29udGVudC10eXBl":
|
269
|
+
- !binary |-
|
270
|
+
dGV4dC9odG1s
|
271
|
+
body:
|
272
|
+
encoding: US-ASCII
|
273
|
+
string: ! "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html
|
274
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<title>Check
|
275
|
+
Page Authority of Domain for FREE | Bagics.com | All In One SEO Companion</title>\n<meta
|
276
|
+
name=\"description\" content=\"Page Authority Checker -WhoIs LookUp Check
|
277
|
+
domain availability Check Page Rank Check PageRank DMOZ directory checker
|
278
|
+
\ Yahoo directory checker Proxy servers Check domain age Check Alexa Rank
|
279
|
+
\ Domain IP lookup Find domain owner Check Domain Authority Check Page Authority
|
280
|
+
\ Check MozTrust Check mozRank Expired Domains Backlinks checker Check
|
281
|
+
Link Popularity \"/>\n\n<meta name=\"keywords\" content=\"WhoIs LookUp,Check
|
282
|
+
domain availability,Check Page Rank,Check PageRank,DMOZ directory checker,Yahoo
|
283
|
+
directory checker,Proxy servers,Check domain age,Check Alexa Rank ,Check Domain
|
284
|
+
IP,lookup,Find domain owner ,Check domain Authority,Check Page Authority,Check
|
285
|
+
MozTrust,Check mozRank,Expired Domains,Backlinks checker,Check Link Popularity
|
286
|
+
\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
|
287
|
+
/>\n<link href=\"css/style.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body
|
288
|
+
onmouseover=\"window.status='';return true;\">\n\n<div id=\"container\">\n<div
|
289
|
+
id=\"main\">\n<div id=\"topbanner\"></div>\n<div id=\"menu\"><center>\n\t\n<a
|
290
|
+
href=\"index.html\" title=\"bagics home page\">Home</a>\n<a href=\"whois.html\">WhoIs
|
291
|
+
LookUp</a>\n<a href=\"domainchecker.html\">Check domain availability</a>\n<a
|
292
|
+
href=\"pr.html\">Check Page Rank</a>\n<a href=\"alexarankchecker.html\">Check
|
293
|
+
Alexa Rank</a>\n<a href=\"domain-authority.html\">Check Domain Authority</a>\n<a
|
294
|
+
href=\"page-authority.html\">Check Page Authority</a>\n<a href=\"yahoodirchecker.html\">Yahoo
|
295
|
+
Directory check</a>\n<a href=\"alexabacklinkcheck.html\">Alexa Backlinks Check</a>\n<a
|
296
|
+
href=\"bingindexcheck.html\">Bing Index Check</a>\n<a href=\"moz-rank.html\">MOZ-Rank
|
297
|
+
Check</a>\n<a href=\"dofollow-links.html\">Dofollow Backlinks Check</a>\n<a
|
298
|
+
href=\"total-back-links.html\">Total Backlinks Check</a>\n<a href=\"fake-pr-check.html\">Fake
|
299
|
+
PR Check</a>\n<a href=\"domain-age.html\">Domain Age Check</a>\n<a href=\"site-value.html\">Estimated
|
300
|
+
Site Value</a>\n<a href=\"google-bot-access.html\">Google Bot Access Check</a>\n<a
|
301
|
+
href=\"get-technorati-rank.html\">Technorati rank Check</a>\n\n\t<!--<br />\n\t<a
|
302
|
+
href=\"./pr.php\">Check PageRank</a>\n\t<a href=\"#\">DMOZ directory checker</a>
|
303
|
+
\n\t<a href=\"#\">Yahoo directory checker</a> \n\t<a href=\"#\">Proxy servers</a>
|
304
|
+
\n\t<br />\n\t<a href=\"#\">Check domain age</a>\n\t<a href=\"#\">Check Alexa
|
305
|
+
Rank</a> \n\t<a href=\"#\">Domain IP lookup</a>\n\t<a href=\"#\">Find domain
|
306
|
+
owner</a>\n\t<br />\n\t<a href=\"#\">Check Domain Authority</a>\n\t<a href=\"#\">Check
|
307
|
+
Page Authority</a>\n\t<a href=\"#\">Check MozTrust</a>\n\t<a href=\"#\">Check
|
308
|
+
mozRank</a>\n\t<br />\n\t<a href=\"#\" class=\"updated\">Expired Domains</a>\n\t<a
|
309
|
+
href=\"#\">Backlinks checker</a>\n\t<a href=\"#\">Check Link Popularity</a>\n\t\t<br
|
310
|
+
/> -->\n\n</div>\n<div id=\"content\">\n<h1>Check Page Authority of Domain.</h1>\n\n<h2>What
|
311
|
+
is Page Authority?</h2>\n\n<p>Page Authority is a measure of a website page
|
312
|
+
to rank higher in search engines.The higher the Page Authority, the more likely
|
313
|
+
the page will rank highly in the SERPs.\n.</P></br><p>Here, You can quickly
|
314
|
+
check the Domain Authority of your favorite sites. Just put your domain name
|
315
|
+
below and click CHECK button.</p>\n\n<br>\n<div class=\"pr\">\n<form action=\"/page-authority.html\"
|
316
|
+
method=\"post\">\nURL: <input name=\"domain\" type=\"text\" id=\"domain\"
|
317
|
+
value=\"\" maxlength=\"300\" class=\"prf\" size=\"45\">\n<input type=\"submit\"
|
318
|
+
name=\"Submit\" value=\"CHECK\">\n</form></div>\n\n<div class=\"seomozResult\">\n\t\t\t<strong
|
319
|
+
class=\"dac\" id=\"resId\">1</strong>\n\t\t\t<h3 class=\"daa\">Page Authority</h3>\t\t\t\n\t\t\t<b
|
320
|
+
id=\"urlId\">please-dont-register-a-site-that-breaks-this-test.com</b>\n\t\t\t</div></div>\n<div
|
321
|
+
class=\"div\"></div>\n</div>\n\n\n\t\n<div id=\"r\"></div>\n<div id=\"credits\">\n<p>Copyright
|
322
|
+
by <a href=\"http://bagics.com\">Bagics</a></p>\n<p>©2012, All rights
|
323
|
+
reserved.</p></div> \n\n\n\n</div><script type=\"text/javascript\">\n\n var
|
324
|
+
_gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-20641732-23']);\n _gaq.push(['_setDomainName',
|
325
|
+
'bagics.com']);\n _gaq.push(['_setAllowLinker', true]);\n _gaq.push(['_trackPageview']);\n\n
|
326
|
+
\ (function() {\n var ga = document.createElement('script'); ga.type =
|
327
|
+
'text/javascript'; ga.async = true;\n ga.src = ('https:' == document.location.protocol
|
328
|
+
? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';\n var s =
|
329
|
+
document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga,
|
330
|
+
s);\n })();\n\n</script></body></html>"
|
331
|
+
http_version: !binary |-
|
332
|
+
MS4x
|
333
|
+
recorded_at: Sat, 02 Nov 2013 22:48:05 GMT
|
138
334
|
recorded_with: VCR 2.3.0
|
@@ -173,18 +173,14 @@ http_interactions:
|
|
173
173
|
response:
|
174
174
|
status:
|
175
175
|
code: 200
|
176
|
-
message:
|
177
|
-
T0s=
|
176
|
+
message: OK
|
178
177
|
headers:
|
179
|
-
|
180
|
-
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
!binary "Y29ubmVjdGlvbg==":
|
186
|
-
- !binary |-
|
187
|
-
Q2xvc2U=
|
178
|
+
content-type:
|
179
|
+
- text/xml
|
180
|
+
content-length:
|
181
|
+
- '2426'
|
182
|
+
connection:
|
183
|
+
- Close
|
188
184
|
body:
|
189
185
|
encoding: ASCII-8BIT
|
190
186
|
string: !binary |-
|
@@ -242,8 +238,7 @@ http_interactions:
|
|
242
238
|
LyIgVEVYVD0iMSIgU09VUkNFPSJwYW5lbCIvPgo8UkVBQ0ggUkFOSz0iMSIv
|
243
239
|
Pgo8UkFOSyBERUxUQT0iLTEiLz4KPENPVU5UUlkgQ09ERT0iVVMiIE5BTUU9
|
244
240
|
IlVuaXRlZCBTdGF0ZXMiIFJBTks9IjEiLz4KPC9TRD4KPC9BTEVYQT4=
|
245
|
-
http_version:
|
246
|
-
MS4x
|
241
|
+
http_version: '1.1'
|
247
242
|
recorded_at: Thu, 14 Feb 2013 01:40:12 GMT
|
248
243
|
- request:
|
249
244
|
method: get
|
@@ -288,9 +283,368 @@ http_interactions:
|
|
288
283
|
- close
|
289
284
|
body:
|
290
285
|
encoding: US-ASCII
|
291
|
-
string:
|
292
|
-
|
293
|
-
'
|
286
|
+
string: |
|
287
|
+
Rank_1:1:9
|
294
288
|
http_version: '1.1'
|
295
289
|
recorded_at: Thu, 14 Feb 2013 01:40:13 GMT
|
296
|
-
|
290
|
+
- request:
|
291
|
+
method: get
|
292
|
+
uri: http://bagics.com/moz-rank.html?domain=google.com
|
293
|
+
body:
|
294
|
+
encoding: US-ASCII
|
295
|
+
string: ''
|
296
|
+
headers:
|
297
|
+
user-agent:
|
298
|
+
- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.56.5 (KHTML,
|
299
|
+
like Gecko) Version/5.1.6 Safari/534.56.5
|
300
|
+
response:
|
301
|
+
status:
|
302
|
+
code: 200
|
303
|
+
message: OK
|
304
|
+
headers:
|
305
|
+
date:
|
306
|
+
- Sat, 02 Nov 2013 22:39:38 GMT
|
307
|
+
server:
|
308
|
+
- Apache
|
309
|
+
vary:
|
310
|
+
- Accept-Encoding
|
311
|
+
cache-control:
|
312
|
+
- !binary |-
|
313
|
+
4oCccHVibGlj4oCd
|
314
|
+
connection:
|
315
|
+
- close
|
316
|
+
transfer-encoding:
|
317
|
+
- chunked
|
318
|
+
content-type:
|
319
|
+
- text/html
|
320
|
+
body:
|
321
|
+
encoding: US-ASCII
|
322
|
+
string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html
|
323
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<title>Check
|
324
|
+
MOZ Rank of Domain for FREE | Bagics.com | All In One SEO Companion</title>\n<meta
|
325
|
+
name=\"description\" content=\"Moz Rank Checker - WhoIs LookUp Check domain
|
326
|
+
availability Check Page Rank Check PageRank DMOZ directory checker Yahoo
|
327
|
+
directory checker Proxy servers Check domain age Check Alexa Rank Domain
|
328
|
+
IP lookup Find domain owner Check Domain Authority Check Page Authority
|
329
|
+
\ Check MozTrust Check mozRank Expired Domains Backlinks checker Check
|
330
|
+
Link Popularity \"/>\n\n<meta name=\"keywords\" content=\"WhoIs LookUp,Check
|
331
|
+
domain availability,Check Page Rank,Check PageRank,DMOZ directory checker,Yahoo
|
332
|
+
directory checker,Proxy servers,Check domain age,Check Alexa Rank ,Check Domain
|
333
|
+
IP,lookup,Find domain owner ,Check domain Authority,Check Page Authority,Check
|
334
|
+
MozTrust,Check mozRank,Expired Domains,Backlinks checker,Check Link Popularity
|
335
|
+
\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
|
336
|
+
/>\n<link href=\"css/style.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<div
|
337
|
+
id=\"container\">\n<div id=\"main\">\n<div id=\"topbanner\"></div>\n<div id=\"menu\"><center>\n\t\n<a
|
338
|
+
href=\"index.html\" title=\"bagics home page\">Home</a>\n<a href=\"whois.html\">WhoIs
|
339
|
+
LookUp</a>\n<a href=\"domainchecker.html\">Check domain availability</a>\n<a
|
340
|
+
href=\"pr.html\">Check Page Rank</a>\n<a href=\"alexarankchecker.html\">Check
|
341
|
+
Alexa Rank</a>\n<a href=\"domain-authority.html\">Check Domain Authority</a>\n<a
|
342
|
+
href=\"page-authority.html\">Check Page Authority</a>\n<a href=\"yahoodirchecker.html\">Yahoo
|
343
|
+
Directory check</a>\n<a href=\"alexabacklinkcheck.html\">Alexa Backlinks Check</a>\n<a
|
344
|
+
href=\"bingindexcheck.html\">Bing Index Check</a>\n<a href=\"moz-rank.html\">MOZ-Rank
|
345
|
+
Check</a>\n<a href=\"dofollow-links.html\">Dofollow Backlinks Check</a>\n<a
|
346
|
+
href=\"total-back-links.html\">Total Backlinks Check</a>\n<a href=\"fake-pr-check.html\">Fake
|
347
|
+
PR Check</a>\n<a href=\"domain-age.html\">Domain Age Check</a>\n<a href=\"site-value.html\">Estimated
|
348
|
+
Site Value</a>\n<a href=\"google-bot-access.html\">Google Bot Access Check</a>\n<a
|
349
|
+
href=\"get-technorati-rank.html\">Technorati rank Check</a>\n\n\t<!--<br />\n\t<a
|
350
|
+
href=\"./pr.php\">Check PageRank</a>\n\t<a href=\"#\">DMOZ directory checker</a>
|
351
|
+
\n\t<a href=\"#\">Yahoo directory checker</a> \n\t<a href=\"#\">Proxy servers</a>
|
352
|
+
\n\t<br />\n\t<a href=\"#\">Check domain age</a>\n\t<a href=\"#\">Check Alexa
|
353
|
+
Rank</a> \n\t<a href=\"#\">Domain IP lookup</a>\n\t<a href=\"#\">Find domain
|
354
|
+
owner</a>\n\t<br />\n\t<a href=\"#\">Check Domain Authority</a>\n\t<a href=\"#\">Check
|
355
|
+
Page Authority</a>\n\t<a href=\"#\">Check MozTrust</a>\n\t<a href=\"#\">Check
|
356
|
+
mozRank</a>\n\t<br />\n\t<a href=\"#\" class=\"updated\">Expired Domains</a>\n\t<a
|
357
|
+
href=\"#\">Backlinks checker</a>\n\t<a href=\"#\">Check Link Popularity</a>\n\t\t<br
|
358
|
+
/> -->\n\n</div>\n<div id=\"content\">\n<h1>Check MOZ RANK of Domain.</h1>\n<p>Here,
|
359
|
+
You can quickly check the MOZ RANKof your favorite sites. Just put your domain
|
360
|
+
name below and click CHECK button.</p>\n\n<div class=\"pr\">\n<form action=\"/moz-rank.html\"
|
361
|
+
method=\"post\">\nURL: <input name=\"domain\" type=\"text\" id=\"domain\"
|
362
|
+
value=\"\" maxlength=\"300\" class=\"prf\" size=\"45\">\n<input type=\"submit\"
|
363
|
+
name=\"Submit\" value=\"CHECK\" >\n</form></div>\n\n<div class=\"seomozResult\">\n\t\t\t<strong
|
364
|
+
class=\"dac\" id=\"resId\">8</strong>\n\t\t\t<h3 class=\"daa\">Moz Rank</h3>\t\t\t\n\t\t\t<b
|
365
|
+
id=\"urlId\">google.com</b>\n\t\t\t</div></div>\n<div class=\"div\"></div>\n</div>\n\n\n\t\n<div
|
366
|
+
id=\"r\"></div>\n<div id=\"credits\">\n<p>Copyright by <a href=\"http://bagics.com\">Bagics</a></p>\n<p>©2012,
|
367
|
+
All rights reserved.</p></div> \n\n\n\n</div><script type=\"text/javascript\">\n\n
|
368
|
+
\ var _gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-20641732-23']);\n
|
369
|
+
\ _gaq.push(['_setDomainName', 'bagics.com']);\n _gaq.push(['_setAllowLinker',
|
370
|
+
true]);\n _gaq.push(['_trackPageview']);\n\n (function() {\n var ga =
|
371
|
+
document.createElement('script'); ga.type = 'text/javascript'; ga.async =
|
372
|
+
true;\n ga.src = ('https:' == document.location.protocol ? 'https://' :
|
373
|
+
'http://') + 'stats.g.doubleclick.net/dc.js';\n var s = document.getElementsByTagName('script')[0];
|
374
|
+
s.parentNode.insertBefore(ga, s);\n })();\n\n</script></body></html> name="
|
375
|
+
http_version: '1.1'
|
376
|
+
recorded_at: Sat, 02 Nov 2013 22:39:56 GMT
|
377
|
+
- request:
|
378
|
+
method: get
|
379
|
+
uri: http://bagics.com/page-authority.html?domain=google.com
|
380
|
+
body:
|
381
|
+
encoding: US-ASCII
|
382
|
+
string: ''
|
383
|
+
headers:
|
384
|
+
user-agent:
|
385
|
+
- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.56.5 (KHTML,
|
386
|
+
like Gecko) Version/5.1.6 Safari/534.56.5
|
387
|
+
response:
|
388
|
+
status:
|
389
|
+
code: 200
|
390
|
+
message: OK
|
391
|
+
headers:
|
392
|
+
date:
|
393
|
+
- Sat, 02 Nov 2013 22:48:03 GMT
|
394
|
+
server:
|
395
|
+
- Apache
|
396
|
+
vary:
|
397
|
+
- Accept-Encoding
|
398
|
+
cache-control:
|
399
|
+
- !binary |-
|
400
|
+
4oCccHVibGlj4oCd
|
401
|
+
connection:
|
402
|
+
- close
|
403
|
+
transfer-encoding:
|
404
|
+
- chunked
|
405
|
+
content-type:
|
406
|
+
- text/html
|
407
|
+
body:
|
408
|
+
encoding: US-ASCII
|
409
|
+
string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html
|
410
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<title>Check
|
411
|
+
Page Authority of Domain for FREE | Bagics.com | All In One SEO Companion</title>\n<meta
|
412
|
+
name=\"description\" content=\"Page Authority Checker -WhoIs LookUp Check
|
413
|
+
domain availability Check Page Rank Check PageRank DMOZ directory checker
|
414
|
+
\ Yahoo directory checker Proxy servers Check domain age Check Alexa Rank
|
415
|
+
\ Domain IP lookup Find domain owner Check Domain Authority Check Page Authority
|
416
|
+
\ Check MozTrust Check mozRank Expired Domains Backlinks checker Check
|
417
|
+
Link Popularity \"/>\n\n<meta name=\"keywords\" content=\"WhoIs LookUp,Check
|
418
|
+
domain availability,Check Page Rank,Check PageRank,DMOZ directory checker,Yahoo
|
419
|
+
directory checker,Proxy servers,Check domain age,Check Alexa Rank ,Check Domain
|
420
|
+
IP,lookup,Find domain owner ,Check domain Authority,Check Page Authority,Check
|
421
|
+
MozTrust,Check mozRank,Expired Domains,Backlinks checker,Check Link Popularity
|
422
|
+
\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
|
423
|
+
/>\n<link href=\"css/style.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body
|
424
|
+
onmouseover=\"window.status='';return true;\">\n\n<div id=\"container\">\n<div
|
425
|
+
id=\"main\">\n<div id=\"topbanner\"></div>\n<div id=\"menu\"><center>\n\t\n<a
|
426
|
+
href=\"index.html\" title=\"bagics home page\">Home</a>\n<a href=\"whois.html\">WhoIs
|
427
|
+
LookUp</a>\n<a href=\"domainchecker.html\">Check domain availability</a>\n<a
|
428
|
+
href=\"pr.html\">Check Page Rank</a>\n<a href=\"alexarankchecker.html\">Check
|
429
|
+
Alexa Rank</a>\n<a href=\"domain-authority.html\">Check Domain Authority</a>\n<a
|
430
|
+
href=\"page-authority.html\">Check Page Authority</a>\n<a href=\"yahoodirchecker.html\">Yahoo
|
431
|
+
Directory check</a>\n<a href=\"alexabacklinkcheck.html\">Alexa Backlinks Check</a>\n<a
|
432
|
+
href=\"bingindexcheck.html\">Bing Index Check</a>\n<a href=\"moz-rank.html\">MOZ-Rank
|
433
|
+
Check</a>\n<a href=\"dofollow-links.html\">Dofollow Backlinks Check</a>\n<a
|
434
|
+
href=\"total-back-links.html\">Total Backlinks Check</a>\n<a href=\"fake-pr-check.html\">Fake
|
435
|
+
PR Check</a>\n<a href=\"domain-age.html\">Domain Age Check</a>\n<a href=\"site-value.html\">Estimated
|
436
|
+
Site Value</a>\n<a href=\"google-bot-access.html\">Google Bot Access Check</a>\n<a
|
437
|
+
href=\"get-technorati-rank.html\">Technorati rank Check</a>\n\n\t<!--<br />\n\t<a
|
438
|
+
href=\"./pr.php\">Check PageRank</a>\n\t<a href=\"#\">DMOZ directory checker</a>
|
439
|
+
\n\t<a href=\"#\">Yahoo directory checker</a> \n\t<a href=\"#\">Proxy servers</a>
|
440
|
+
\n\t<br />\n\t<a href=\"#\">Check domain age</a>\n\t<a href=\"#\">Check Alexa
|
441
|
+
Rank</a> \n\t<a href=\"#\">Domain IP lookup</a>\n\t<a href=\"#\">Find domain
|
442
|
+
owner</a>\n\t<br />\n\t<a href=\"#\">Check Domain Authority</a>\n\t<a href=\"#\">Check
|
443
|
+
Page Authority</a>\n\t<a href=\"#\">Check MozTrust</a>\n\t<a href=\"#\">Check
|
444
|
+
mozRank</a>\n\t<br />\n\t<a href=\"#\" class=\"updated\">Expired Domains</a>\n\t<a
|
445
|
+
href=\"#\">Backlinks checker</a>\n\t<a href=\"#\">Check Link Popularity</a>\n\t\t<br
|
446
|
+
/> -->\n\n</div>\n<div id=\"content\">\n<h1>Check Page Authority of Domain.</h1>\n\n<h2>What
|
447
|
+
is Page Authority?</h2>\n\n<p>Page Authority is a measure of a website page
|
448
|
+
to rank higher in search engines.The higher the Page Authority, the more likely
|
449
|
+
the page will rank highly in the SERPs.\n.</P></br><p>Here, You can quickly
|
450
|
+
check the Domain Authority of your favorite sites. Just put your domain name
|
451
|
+
below and click CHECK button.</p>\n\n<br>\n<div class=\"pr\">\n<form action=\"/page-authority.html\"
|
452
|
+
method=\"post\">\nURL: <input name=\"domain\" type=\"text\" id=\"domain\"
|
453
|
+
value=\"\" maxlength=\"300\" class=\"prf\" size=\"45\">\n<input type=\"submit\"
|
454
|
+
name=\"Submit\" value=\"CHECK\">\n</form></div>\n\n<div class=\"seomozResult\">\n\t\t\t<strong
|
455
|
+
class=\"dac\" id=\"resId\">97</strong>\n\t\t\t<h3 class=\"daa\">Page Authority</h3>\t\t\t\n\t\t\t<b
|
456
|
+
id=\"urlId\">google.com</b>\n\t\t\t</div></div>\n<div class=\"div\"></div>\n</div>\n\n\n\t\n<div
|
457
|
+
id=\"r\"></div>\n<div id=\"credits\">\n<p>Copyright by <a href=\"http://bagics.com\">Bagics</a></p>\n<p>©2012,
|
458
|
+
All rights reserved.</p></div> \n\n\n\n</div><script type=\"text/javascript\">\n\n
|
459
|
+
\ var _gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-20641732-23']);\n
|
460
|
+
\ _gaq.push(['_setDomainName', 'bagics.com']);\n _gaq.push(['_setAllowLinker',
|
461
|
+
true]);\n _gaq.push(['_trackPageview']);\n\n (function() {\n var ga =
|
462
|
+
document.createElement('script'); ga.type = 'text/javascript'; ga.async =
|
463
|
+
true;\n ga.src = ('https:' == document.location.protocol ? 'https://' :
|
464
|
+
'http://') + 'stats.g.doubleclick.net/dc.js';\n var s = document.getElementsByTagName('script')[0];
|
465
|
+
s.parentNode.insertBefore(ga, s);\n })();\n\n</script></body></html>"
|
466
|
+
http_version: '1.1'
|
467
|
+
recorded_at: Sat, 02 Nov 2013 22:48:03 GMT
|
468
|
+
- request:
|
469
|
+
method: get
|
470
|
+
uri: http://bagics.com/page-authority.html?domain=www.google.com
|
471
|
+
body:
|
472
|
+
encoding: US-ASCII
|
473
|
+
string: ''
|
474
|
+
headers:
|
475
|
+
user-agent:
|
476
|
+
- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.56.5 (KHTML,
|
477
|
+
like Gecko) Version/5.1.6 Safari/534.56.5
|
478
|
+
response:
|
479
|
+
status:
|
480
|
+
code: 200
|
481
|
+
message: OK
|
482
|
+
headers:
|
483
|
+
date:
|
484
|
+
- Mon, 11 Nov 2013 14:16:59 GMT
|
485
|
+
server:
|
486
|
+
- Apache
|
487
|
+
cache-control:
|
488
|
+
- !binary |-
|
489
|
+
4oCccHVibGlj4oCd
|
490
|
+
keep-alive:
|
491
|
+
- timeout=10, max=30
|
492
|
+
content-type:
|
493
|
+
- text/html
|
494
|
+
content-length:
|
495
|
+
- '4487'
|
496
|
+
accept-ranges:
|
497
|
+
- none
|
498
|
+
connection:
|
499
|
+
- close
|
500
|
+
body:
|
501
|
+
encoding: UTF-8
|
502
|
+
string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html
|
503
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<title>Check
|
504
|
+
Page Authority of Domain for FREE | Bagics.com | All In One SEO Companion</title>\n<meta
|
505
|
+
name=\"description\" content=\"Page Authority Checker -WhoIs LookUp Check
|
506
|
+
domain availability Check Page Rank Check PageRank DMOZ directory checker
|
507
|
+
\ Yahoo directory checker Proxy servers Check domain age Check Alexa Rank
|
508
|
+
\ Domain IP lookup Find domain owner Check Domain Authority Check Page Authority
|
509
|
+
\ Check MozTrust Check mozRank Expired Domains Backlinks checker Check
|
510
|
+
Link Popularity \"/>\n\n<meta name=\"keywords\" content=\"WhoIs LookUp,Check
|
511
|
+
domain availability,Check Page Rank,Check PageRank,DMOZ directory checker,Yahoo
|
512
|
+
directory checker,Proxy servers,Check domain age,Check Alexa Rank ,Check Domain
|
513
|
+
IP,lookup,Find domain owner ,Check domain Authority,Check Page Authority,Check
|
514
|
+
MozTrust,Check mozRank,Expired Domains,Backlinks checker,Check Link Popularity
|
515
|
+
\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
|
516
|
+
/>\n<link href=\"css/style.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body
|
517
|
+
onmouseover=\"window.status='';return true;\">\n\n<div id=\"container\">\n<div
|
518
|
+
id=\"main\">\n<div id=\"topbanner\"></div>\n<div id=\"menu\"><center>\n\t\n<a
|
519
|
+
href=\"index.html\" title=\"bagics home page\">Home</a>\n<a href=\"whois.html\">WhoIs
|
520
|
+
LookUp</a>\n<a href=\"domainchecker.html\">Check domain availability</a>\n<a
|
521
|
+
href=\"pr.html\">Check Page Rank</a>\n<a href=\"alexarankchecker.html\">Check
|
522
|
+
Alexa Rank</a>\n<a href=\"domain-authority.html\">Check Domain Authority</a>\n<a
|
523
|
+
href=\"page-authority.html\">Check Page Authority</a>\n<a href=\"yahoodirchecker.html\">Yahoo
|
524
|
+
Directory check</a>\n<a href=\"alexabacklinkcheck.html\">Alexa Backlinks Check</a>\n<a
|
525
|
+
href=\"bingindexcheck.html\">Bing Index Check</a>\n<a href=\"moz-rank.html\">MOZ-Rank
|
526
|
+
Check</a>\n<a href=\"dofollow-links.html\">Dofollow Backlinks Check</a>\n<a
|
527
|
+
href=\"total-back-links.html\">Total Backlinks Check</a>\n<a href=\"fake-pr-check.html\">Fake
|
528
|
+
PR Check</a>\n<a href=\"domain-age.html\">Domain Age Check</a>\n<a href=\"site-value.html\">Estimated
|
529
|
+
Site Value</a>\n<a href=\"google-bot-access.html\">Google Bot Access Check</a>\n<a
|
530
|
+
href=\"get-technorati-rank.html\">Technorati rank Check</a>\n\n\t<!--<br />\n\t<a
|
531
|
+
href=\"./pr.php\">Check PageRank</a>\n\t<a href=\"#\">DMOZ directory checker</a>
|
532
|
+
\n\t<a href=\"#\">Yahoo directory checker</a> \n\t<a href=\"#\">Proxy servers</a>
|
533
|
+
\n\t<br />\n\t<a href=\"#\">Check domain age</a>\n\t<a href=\"#\">Check Alexa
|
534
|
+
Rank</a> \n\t<a href=\"#\">Domain IP lookup</a>\n\t<a href=\"#\">Find domain
|
535
|
+
owner</a>\n\t<br />\n\t<a href=\"#\">Check Domain Authority</a>\n\t<a href=\"#\">Check
|
536
|
+
Page Authority</a>\n\t<a href=\"#\">Check MozTrust</a>\n\t<a href=\"#\">Check
|
537
|
+
mozRank</a>\n\t<br />\n\t<a href=\"#\" class=\"updated\">Expired Domains</a>\n\t<a
|
538
|
+
href=\"#\">Backlinks checker</a>\n\t<a href=\"#\">Check Link Popularity</a>\n\t\t<br
|
539
|
+
/> -->\n\n</div>\n<div id=\"content\">\n<h1>Check Page Authority of Domain.</h1>\n\n<h2>What
|
540
|
+
is Page Authority?</h2>\n\n<p>Page Authority is a measure of a website page
|
541
|
+
to rank higher in search engines.The higher the Page Authority, the more likely
|
542
|
+
the page will rank highly in the SERPs.\n.</P></br><p>Here, You can quickly
|
543
|
+
check the Domain Authority of your favorite sites. Just put your domain name
|
544
|
+
below and click CHECK button.</p>\n\n<br>\n<div class=\"pr\">\n<form action=\"/page-authority.html\"
|
545
|
+
method=\"post\">\nURL: <input name=\"domain\" type=\"text\" id=\"domain\"
|
546
|
+
value=\"\" maxlength=\"300\" class=\"prf\" size=\"45\">\n<input type=\"submit\"
|
547
|
+
name=\"Submit\" value=\"CHECK\">\n</form></div>\n\n<div class=\"seomozResult\">\n\t\t\t<strong
|
548
|
+
class=\"dac\" id=\"resId\">97</strong>\n\t\t\t<h3 class=\"daa\">Page Authority</h3>\t\t\t\n\t\t\t<b
|
549
|
+
id=\"urlId\">www.google.com</b>\n\t\t\t</div></div>\n<div class=\"div\"></div>\n</div>\n\n\n\t\n<div
|
550
|
+
id=\"r\"></div>\n<div id=\"credits\">\n<p>Copyright by <a href=\"http://bagics.com\">Bagics</a></p>\n<p>©2012,
|
551
|
+
All rights reserved.</p></div> \n\n\n\n</div><script type=\"text/javascript\">\n\n
|
552
|
+
\ var _gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-20641732-23']);\n
|
553
|
+
\ _gaq.push(['_setDomainName', 'bagics.com']);\n _gaq.push(['_setAllowLinker',
|
554
|
+
true]);\n _gaq.push(['_trackPageview']);\n\n (function() {\n var ga =
|
555
|
+
document.createElement('script'); ga.type = 'text/javascript'; ga.async =
|
556
|
+
true;\n ga.src = ('https:' == document.location.protocol ? 'https://' :
|
557
|
+
'http://') + 'stats.g.doubleclick.net/dc.js';\n var s = document.getElementsByTagName('script')[0];
|
558
|
+
s.parentNode.insertBefore(ga, s);\n })();\n\n</script></body></html>"
|
559
|
+
http_version: '1.1'
|
560
|
+
recorded_at: Mon, 11 Nov 2013 14:17:00 GMT
|
561
|
+
- request:
|
562
|
+
method: get
|
563
|
+
uri: http://bagics.com/moz-rank.html?domain=www.google.com
|
564
|
+
body:
|
565
|
+
encoding: US-ASCII
|
566
|
+
string: ''
|
567
|
+
headers:
|
568
|
+
user-agent:
|
569
|
+
- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.56.5 (KHTML,
|
570
|
+
like Gecko) Version/5.1.6 Safari/534.56.5
|
571
|
+
response:
|
572
|
+
status:
|
573
|
+
code: 200
|
574
|
+
message: OK
|
575
|
+
headers:
|
576
|
+
date:
|
577
|
+
- Mon, 11 Nov 2013 14:16:59 GMT
|
578
|
+
server:
|
579
|
+
- Apache
|
580
|
+
cache-control:
|
581
|
+
- !binary |-
|
582
|
+
4oCccHVibGlj4oCd
|
583
|
+
keep-alive:
|
584
|
+
- timeout=10, max=30
|
585
|
+
content-type:
|
586
|
+
- text/html
|
587
|
+
content-length:
|
588
|
+
- '4185'
|
589
|
+
accept-ranges:
|
590
|
+
- none
|
591
|
+
connection:
|
592
|
+
- close
|
593
|
+
body:
|
594
|
+
encoding: UTF-8
|
595
|
+
string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html
|
596
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<title>Check
|
597
|
+
MOZ Rank of Domain for FREE | Bagics.com | All In One SEO Companion</title>\n<meta
|
598
|
+
name=\"description\" content=\"Moz Rank Checker - WhoIs LookUp Check domain
|
599
|
+
availability Check Page Rank Check PageRank DMOZ directory checker Yahoo
|
600
|
+
directory checker Proxy servers Check domain age Check Alexa Rank Domain
|
601
|
+
IP lookup Find domain owner Check Domain Authority Check Page Authority
|
602
|
+
\ Check MozTrust Check mozRank Expired Domains Backlinks checker Check
|
603
|
+
Link Popularity \"/>\n\n<meta name=\"keywords\" content=\"WhoIs LookUp,Check
|
604
|
+
domain availability,Check Page Rank,Check PageRank,DMOZ directory checker,Yahoo
|
605
|
+
directory checker,Proxy servers,Check domain age,Check Alexa Rank ,Check Domain
|
606
|
+
IP,lookup,Find domain owner ,Check domain Authority,Check Page Authority,Check
|
607
|
+
MozTrust,Check mozRank,Expired Domains,Backlinks checker,Check Link Popularity
|
608
|
+
\">\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
|
609
|
+
/>\n<link href=\"css/style.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<div
|
610
|
+
id=\"container\">\n<div id=\"main\">\n<div id=\"topbanner\"></div>\n<div id=\"menu\"><center>\n\t\n<a
|
611
|
+
href=\"index.html\" title=\"bagics home page\">Home</a>\n<a href=\"whois.html\">WhoIs
|
612
|
+
LookUp</a>\n<a href=\"domainchecker.html\">Check domain availability</a>\n<a
|
613
|
+
href=\"pr.html\">Check Page Rank</a>\n<a href=\"alexarankchecker.html\">Check
|
614
|
+
Alexa Rank</a>\n<a href=\"domain-authority.html\">Check Domain Authority</a>\n<a
|
615
|
+
href=\"page-authority.html\">Check Page Authority</a>\n<a href=\"yahoodirchecker.html\">Yahoo
|
616
|
+
Directory check</a>\n<a href=\"alexabacklinkcheck.html\">Alexa Backlinks Check</a>\n<a
|
617
|
+
href=\"bingindexcheck.html\">Bing Index Check</a>\n<a href=\"moz-rank.html\">MOZ-Rank
|
618
|
+
Check</a>\n<a href=\"dofollow-links.html\">Dofollow Backlinks Check</a>\n<a
|
619
|
+
href=\"total-back-links.html\">Total Backlinks Check</a>\n<a href=\"fake-pr-check.html\">Fake
|
620
|
+
PR Check</a>\n<a href=\"domain-age.html\">Domain Age Check</a>\n<a href=\"site-value.html\">Estimated
|
621
|
+
Site Value</a>\n<a href=\"google-bot-access.html\">Google Bot Access Check</a>\n<a
|
622
|
+
href=\"get-technorati-rank.html\">Technorati rank Check</a>\n\n\t<!--<br />\n\t<a
|
623
|
+
href=\"./pr.php\">Check PageRank</a>\n\t<a href=\"#\">DMOZ directory checker</a>
|
624
|
+
\n\t<a href=\"#\">Yahoo directory checker</a> \n\t<a href=\"#\">Proxy servers</a>
|
625
|
+
\n\t<br />\n\t<a href=\"#\">Check domain age</a>\n\t<a href=\"#\">Check Alexa
|
626
|
+
Rank</a> \n\t<a href=\"#\">Domain IP lookup</a>\n\t<a href=\"#\">Find domain
|
627
|
+
owner</a>\n\t<br />\n\t<a href=\"#\">Check Domain Authority</a>\n\t<a href=\"#\">Check
|
628
|
+
Page Authority</a>\n\t<a href=\"#\">Check MozTrust</a>\n\t<a href=\"#\">Check
|
629
|
+
mozRank</a>\n\t<br />\n\t<a href=\"#\" class=\"updated\">Expired Domains</a>\n\t<a
|
630
|
+
href=\"#\">Backlinks checker</a>\n\t<a href=\"#\">Check Link Popularity</a>\n\t\t<br
|
631
|
+
/> -->\n\n</div>\n<div id=\"content\">\n<h1>Check MOZ RANK of Domain.</h1>\n<p>Here,
|
632
|
+
You can quickly check the MOZ RANKof your favorite sites. Just put your domain
|
633
|
+
name below and click CHECK button.</p>\n\n<div class=\"pr\">\n<form action=\"/moz-rank.html\"
|
634
|
+
method=\"post\">\nURL: <input name=\"domain\" type=\"text\" id=\"domain\"
|
635
|
+
value=\"\" maxlength=\"300\" class=\"prf\" size=\"45\">\n<input type=\"submit\"
|
636
|
+
name=\"Submit\" value=\"CHECK\" >\n</form></div>\n\n<div class=\"seomozResult\">\n\t\t\t<strong
|
637
|
+
class=\"dac\" id=\"resId\">8</strong>\n\t\t\t<h3 class=\"daa\">Moz Rank</h3>\t\t\t\n\t\t\t<b
|
638
|
+
id=\"urlId\">www.google.com</b>\n\t\t\t</div></div>\n<div class=\"div\"></div>\n</div>\n\n\n\t\n<div
|
639
|
+
id=\"r\"></div>\n<div id=\"credits\">\n<p>Copyright by <a href=\"http://bagics.com\">Bagics</a></p>\n<p>©2012,
|
640
|
+
All rights reserved.</p></div> \n\n\n\n</div><script type=\"text/javascript\">\n\n
|
641
|
+
\ var _gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-20641732-23']);\n
|
642
|
+
\ _gaq.push(['_setDomainName', 'bagics.com']);\n _gaq.push(['_setAllowLinker',
|
643
|
+
true]);\n _gaq.push(['_trackPageview']);\n\n (function() {\n var ga =
|
644
|
+
document.createElement('script'); ga.type = 'text/javascript'; ga.async =
|
645
|
+
true;\n ga.src = ('https:' == document.location.protocol ? 'https://' :
|
646
|
+
'http://') + 'stats.g.doubleclick.net/dc.js';\n var s = document.getElementsByTagName('script')[0];
|
647
|
+
s.parentNode.insertBefore(ga, s);\n })();\n\n</script></body></html> name="
|
648
|
+
http_version: '1.1'
|
649
|
+
recorded_at: Mon, 11 Nov 2013 14:17:09 GMT
|
650
|
+
recorded_with: VCR 2.7.0
|
data/spec/page_rankr_spec.rb
CHANGED
@@ -47,6 +47,7 @@ describe PageRankr do
|
|
47
47
|
it{ should include(:alexa_us) }
|
48
48
|
it{ should include(:alexa_global) }
|
49
49
|
it{ should include(:google) }
|
50
|
+
it{ should include(:moz_rank) }
|
50
51
|
end
|
51
52
|
|
52
53
|
describe "#ranks", :focus => true do
|
@@ -61,11 +62,15 @@ describe PageRankr do
|
|
61
62
|
it{ should have_key(:alexa_global) }
|
62
63
|
it{ should have_key(:alexa_country) }
|
63
64
|
it{ should have_key(:google) }
|
64
|
-
|
65
|
+
it{ should have_key(:moz_rank) }
|
66
|
+
it{ should have_key(:page_authority) }
|
67
|
+
|
65
68
|
it{ subject[:alexa_us].should be_number >= 1 }
|
66
69
|
it{ subject[:alexa_global].should be_number >= 1 }
|
67
70
|
it{ subject[:alexa_country].should be_number >= 1 }
|
68
71
|
it{ subject[:google].should be_in(0..10) }
|
72
|
+
it{ subject[:moz_rank].should be_in(5..9) }
|
73
|
+
it{ subject[:page_authority].should be_in(90..99) }
|
69
74
|
end
|
70
75
|
|
71
76
|
describe "failure" do
|
@@ -79,11 +84,15 @@ describe PageRankr do
|
|
79
84
|
it{ should have_key(:alexa_global) }
|
80
85
|
it{ should have_key(:alexa_country) }
|
81
86
|
it{ should have_key(:google) }
|
82
|
-
|
87
|
+
it{ should have_key(:moz_rank) }
|
88
|
+
it{ should have_key(:page_authority) }
|
89
|
+
|
83
90
|
it{ subject[:alexa_us].should be_nil }
|
84
91
|
it{ subject[:alexa_global].should be_nil }
|
85
92
|
it{ subject[:alexa_country].should be_nil }
|
86
93
|
it{ subject[:google].should be_nil }
|
94
|
+
it{ subject[:moz_rank].should == 0 }
|
95
|
+
it{ subject[:page_authority].should == 1 }
|
87
96
|
end
|
88
97
|
end
|
89
98
|
|
metadata
CHANGED
@@ -1,137 +1,169 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: PageRankr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
5
|
-
prerelease:
|
4
|
+
version: 4.2.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Allen Madsen
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-11-11 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rake
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
25
27
|
- !ruby/object:Gem::Dependency
|
26
28
|
name: rspec
|
27
|
-
requirement:
|
28
|
-
none: false
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
29
30
|
requirements:
|
30
|
-
- -
|
31
|
+
- - '>='
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: 2.6.0
|
33
34
|
type: :development
|
34
35
|
prerelease: false
|
35
|
-
version_requirements:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 2.6.0
|
36
41
|
- !ruby/object:Gem::Dependency
|
37
42
|
name: bundler
|
38
|
-
requirement:
|
39
|
-
none: false
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
40
44
|
requirements:
|
41
|
-
- -
|
45
|
+
- - '>='
|
42
46
|
- !ruby/object:Gem::Version
|
43
47
|
version: 1.0.0
|
44
48
|
type: :development
|
45
49
|
prerelease: false
|
46
|
-
version_requirements:
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.0.0
|
47
55
|
- !ruby/object:Gem::Dependency
|
48
56
|
name: fuubar
|
49
|
-
requirement:
|
50
|
-
none: false
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
51
58
|
requirements:
|
52
|
-
- -
|
59
|
+
- - '>='
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: 0.0.1
|
55
62
|
type: :development
|
56
63
|
prerelease: false
|
57
|
-
version_requirements:
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.0.1
|
58
69
|
- !ruby/object:Gem::Dependency
|
59
70
|
name: vcr
|
60
|
-
requirement:
|
61
|
-
none: false
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
62
72
|
requirements:
|
63
|
-
- -
|
73
|
+
- - '>='
|
64
74
|
- !ruby/object:Gem::Version
|
65
75
|
version: '0'
|
66
76
|
type: :development
|
67
77
|
prerelease: false
|
68
|
-
version_requirements:
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: fakeweb
|
71
|
-
requirement:
|
72
|
-
none: false
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
73
86
|
requirements:
|
74
|
-
- -
|
87
|
+
- - '>='
|
75
88
|
- !ruby/object:Gem::Version
|
76
89
|
version: '0'
|
77
90
|
type: :development
|
78
91
|
prerelease: false
|
79
|
-
version_requirements:
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
80
97
|
- !ruby/object:Gem::Dependency
|
81
98
|
name: nokogiri
|
82
|
-
requirement:
|
83
|
-
none: false
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
84
100
|
requirements:
|
85
|
-
- -
|
101
|
+
- - '>='
|
86
102
|
- !ruby/object:Gem::Version
|
87
103
|
version: 1.4.1
|
88
104
|
type: :runtime
|
89
105
|
prerelease: false
|
90
|
-
version_requirements:
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.4.1
|
91
111
|
- !ruby/object:Gem::Dependency
|
92
112
|
name: json
|
93
|
-
requirement:
|
94
|
-
none: false
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
95
114
|
requirements:
|
96
|
-
- -
|
115
|
+
- - '>='
|
97
116
|
- !ruby/object:Gem::Version
|
98
117
|
version: 1.4.6
|
99
118
|
type: :runtime
|
100
119
|
prerelease: false
|
101
|
-
version_requirements:
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '>='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 1.4.6
|
102
125
|
- !ruby/object:Gem::Dependency
|
103
126
|
name: public_suffix
|
104
|
-
requirement:
|
105
|
-
none: false
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
106
128
|
requirements:
|
107
|
-
- -
|
129
|
+
- - '>='
|
108
130
|
- !ruby/object:Gem::Version
|
109
131
|
version: 0.9.0
|
110
132
|
type: :runtime
|
111
133
|
prerelease: false
|
112
|
-
version_requirements:
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 0.9.0
|
113
139
|
- !ruby/object:Gem::Dependency
|
114
140
|
name: httparty
|
115
|
-
requirement:
|
116
|
-
none: false
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
117
142
|
requirements:
|
118
|
-
- -
|
143
|
+
- - '>='
|
119
144
|
- !ruby/object:Gem::Version
|
120
145
|
version: 0.9.0
|
121
146
|
type: :runtime
|
122
147
|
prerelease: false
|
123
|
-
version_requirements:
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - '>='
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 0.9.0
|
124
153
|
- !ruby/object:Gem::Dependency
|
125
154
|
name: jsonpath
|
126
|
-
requirement:
|
127
|
-
none: false
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
128
156
|
requirements:
|
129
|
-
- -
|
157
|
+
- - '>='
|
130
158
|
- !ruby/object:Gem::Version
|
131
159
|
version: 0.4.2
|
132
160
|
type: :runtime
|
133
161
|
prerelease: false
|
134
|
-
version_requirements:
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - '>='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 0.4.2
|
135
167
|
description: Easy way to retrieve Google Page Rank, Alexa Rank, backlink counts, and
|
136
168
|
index counts.
|
137
169
|
email:
|
@@ -141,7 +173,8 @@ extensions: []
|
|
141
173
|
extra_rdoc_files: []
|
142
174
|
files:
|
143
175
|
- .gitignore
|
144
|
-
- .
|
176
|
+
- .ruby-gemset
|
177
|
+
- .ruby-version
|
145
178
|
- .travis.yml
|
146
179
|
- CHANGELOG.md
|
147
180
|
- Gemfile
|
@@ -172,6 +205,8 @@ files:
|
|
172
205
|
- lib/page_rankr/ranks/alexa_us.rb
|
173
206
|
- lib/page_rankr/ranks/google.rb
|
174
207
|
- lib/page_rankr/ranks/google/checksum.rb
|
208
|
+
- lib/page_rankr/ranks/moz_rank.rb
|
209
|
+
- lib/page_rankr/ranks/page_authority.rb
|
175
210
|
- lib/page_rankr/request.rb
|
176
211
|
- lib/page_rankr/site.rb
|
177
212
|
- lib/page_rankr/tracker.rb
|
@@ -194,27 +229,26 @@ files:
|
|
194
229
|
- spec/spec_helper.rb
|
195
230
|
homepage: http://github.com/blatyo/page_rankr
|
196
231
|
licenses: []
|
232
|
+
metadata: {}
|
197
233
|
post_install_message:
|
198
234
|
rdoc_options: []
|
199
235
|
require_paths:
|
200
236
|
- lib
|
201
237
|
required_ruby_version: !ruby/object:Gem::Requirement
|
202
|
-
none: false
|
203
238
|
requirements:
|
204
|
-
- -
|
239
|
+
- - '>='
|
205
240
|
- !ruby/object:Gem::Version
|
206
241
|
version: '0'
|
207
242
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
208
|
-
none: false
|
209
243
|
requirements:
|
210
|
-
- -
|
244
|
+
- - '>='
|
211
245
|
- !ruby/object:Gem::Version
|
212
246
|
version: 1.3.6
|
213
247
|
requirements: []
|
214
248
|
rubyforge_project:
|
215
|
-
rubygems_version:
|
249
|
+
rubygems_version: 2.0.6
|
216
250
|
signing_key:
|
217
|
-
specification_version:
|
251
|
+
specification_version: 4
|
218
252
|
summary: Easy way to retrieve Google Page Rank, Alexa Rank, backlink counts, and index
|
219
253
|
counts.
|
220
254
|
test_files:
|
data/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm use ruby-1.9.3-p125@page_rankr --create
|