README.md in PageRankr-1.3.0 vs README.md in PageRankr-1.4.0

- old
+ new

@@ -26,20 +26,25 @@ # is equivalent to PageRankr.backlinks('www.google.com', :google, :bing, :yahoo, :altavista, :alltheweb, :alexa) #=> {:google=>23000, :bing=>215000000, :yahoo=>250522337, :altavista=>137000000, :alltheweb=>74500000, :alexa=>727036} You can also use the alias `backlink` instead of `backlinks`. -Valid search engines are: `:google, :bing, :yahoo, :altavista, :alltheweb, :alexa`. +Valid search engines are: `:google, :bing, :yahoo, :altavista, :alltheweb, :alexa`. To get this list you can do: + PageRankr.backlink_trackers #=> [:alexa, :alltheweb, :altavista, :bing, :google, :yahoo] + ### Ranks PageRankr.ranks('www.google.com', :alexa, :google) #=> {:alexa=>1, :google=>10} # this also gives the same result PageRankr.ranks('www.google.com') #=> {:alexa=>1, :google=>10} You can also use the alias `rank` instead of `ranks`. -There are two valid rank trackers supported: `:alexa, :google`. +There are two valid rank trackers supported: `:alexa, :google`. To get this you can do: + + PageRankr.rank_trackers #=> [:alexa, :google] + Alexa ranks are descending where 1 is the most popular. If a site has an alexa rank of 0 then the site is unranked. 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 -1. ## Fix it! \ No newline at end of file