├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.md ├── PageRankr.gemspec ├── README.md ├── Rakefile ├── lib ├── PageRankr.rb ├── page_rankr.rb └── page_rankr │ ├── backlink.rb │ ├── backlinks.rb │ ├── backlinks │ ├── bing.rb │ ├── google.rb │ └── yahoo.rb │ ├── index.rb │ ├── indexes.rb │ ├── indexes │ ├── bing.rb │ ├── google.rb │ └── yahoo.rb │ ├── proxy_services.rb │ ├── proxy_services │ ├── random.rb │ └── round_robin.rb │ ├── rank.rb │ ├── ranks.rb │ ├── ranks │ ├── alexa_country.rb │ ├── alexa_global.rb │ ├── alexa_us.rb │ ├── domain_authority.rb │ ├── google.rb │ ├── google │ │ └── checksum.rb │ ├── moz_rank.rb │ └── page_authority.rb │ ├── request.rb │ ├── site.rb │ ├── social.rb │ ├── socials.rb │ ├── socials │ ├── facebook.rb │ ├── google.rb │ ├── linkedin.rb │ ├── pinterest.rb │ ├── stumble_upon.rb │ ├── twitter.rb │ └── vk.rb │ ├── tracker.rb │ ├── trackers.rb │ └── version.rb ├── out.html └── spec ├── backlinks ├── bing_spec.rb ├── google_spec.rb └── yahoo_spec.rb ├── fixtures └── vcr_cassettes │ ├── PageRankr_Backlinks_Bing │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Backlinks_Google │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Backlinks_Yahoo │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Indexes_Bing │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Indexes_Google │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Indexes_Yahoo │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Ranks_AlexaCountry │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Ranks_AlexaGlobal │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Ranks_AlexaUs │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Ranks_DomainAuthority │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Ranks_Google │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Ranks_MozRank │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Ranks_PageAuthority │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Socials_Facebook │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Socials_Google │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Socials_LinkedIn │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Socials_Pinterest │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Socials_StumbleUpon │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Socials_Twitter │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── PageRankr_Socials_Vk │ └── _run │ │ ├── with_match │ │ └── .yml │ │ └── with_no_match │ │ └── .yml │ ├── alexa_ranks_edge_case_1.yml │ ├── failure_socials.yml │ └── success_socials.yml ├── indexes ├── bing_spec.rb ├── google_spec.rb └── yahoo_spec.rb ├── page_rankr_spec.rb ├── proxy_services ├── random_spec.rb └── round_robin_spec.rb ├── ranks ├── alexa_country_spec.rb ├── alexa_global_spec.rb ├── alexa_us_spec.rb ├── domain_authority_spec.rb ├── google │ └── checksum_spec.rb ├── google_spec.rb ├── moz_rank_spec.rb └── page_authority_spec.rb ├── site_spec.rb ├── socials ├── facebook_spec.rb ├── google_spec.rb ├── linkedin_spec.rb ├── pinterest_spec.rb ├── stumble_upon_spec.rb ├── twitter_spec.rb └── vk_spec.rb ├── spec_helper.rb └── support └── custom_matchers.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | page_rankr 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PageRankr.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/PageRankr.gemspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/PageRankr.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path('../page_rankr', __FILE__) -------------------------------------------------------------------------------- /lib/page_rankr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr.rb -------------------------------------------------------------------------------- /lib/page_rankr/backlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/backlink.rb -------------------------------------------------------------------------------- /lib/page_rankr/backlinks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/backlinks.rb -------------------------------------------------------------------------------- /lib/page_rankr/backlinks/bing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/backlinks/bing.rb -------------------------------------------------------------------------------- /lib/page_rankr/backlinks/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/backlinks/google.rb -------------------------------------------------------------------------------- /lib/page_rankr/backlinks/yahoo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/backlinks/yahoo.rb -------------------------------------------------------------------------------- /lib/page_rankr/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/index.rb -------------------------------------------------------------------------------- /lib/page_rankr/indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/indexes.rb -------------------------------------------------------------------------------- /lib/page_rankr/indexes/bing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/indexes/bing.rb -------------------------------------------------------------------------------- /lib/page_rankr/indexes/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/indexes/google.rb -------------------------------------------------------------------------------- /lib/page_rankr/indexes/yahoo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/indexes/yahoo.rb -------------------------------------------------------------------------------- /lib/page_rankr/proxy_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/proxy_services.rb -------------------------------------------------------------------------------- /lib/page_rankr/proxy_services/random.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/proxy_services/random.rb -------------------------------------------------------------------------------- /lib/page_rankr/proxy_services/round_robin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/proxy_services/round_robin.rb -------------------------------------------------------------------------------- /lib/page_rankr/rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/rank.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/alexa_country.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/alexa_country.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/alexa_global.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/alexa_global.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/alexa_us.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/alexa_us.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/domain_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/domain_authority.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/google.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/google/checksum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/google/checksum.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/moz_rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/moz_rank.rb -------------------------------------------------------------------------------- /lib/page_rankr/ranks/page_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/ranks/page_authority.rb -------------------------------------------------------------------------------- /lib/page_rankr/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/request.rb -------------------------------------------------------------------------------- /lib/page_rankr/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/site.rb -------------------------------------------------------------------------------- /lib/page_rankr/social.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/social.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials/facebook.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials/google.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials/linkedin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials/linkedin.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials/pinterest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials/pinterest.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials/stumble_upon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials/stumble_upon.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials/twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials/twitter.rb -------------------------------------------------------------------------------- /lib/page_rankr/socials/vk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/socials/vk.rb -------------------------------------------------------------------------------- /lib/page_rankr/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/tracker.rb -------------------------------------------------------------------------------- /lib/page_rankr/trackers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/lib/page_rankr/trackers.rb -------------------------------------------------------------------------------- /lib/page_rankr/version.rb: -------------------------------------------------------------------------------- 1 | module PageRankr 2 | VERSION = "4.6.1" 3 | end 4 | -------------------------------------------------------------------------------- /out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/out.html -------------------------------------------------------------------------------- /spec/backlinks/bing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/backlinks/bing_spec.rb -------------------------------------------------------------------------------- /spec/backlinks/google_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/backlinks/google_spec.rb -------------------------------------------------------------------------------- /spec/backlinks/yahoo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/backlinks/yahoo_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Bing/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Bing/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Bing/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Bing/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Google/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Google/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Google/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Google/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Yahoo/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Yahoo/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Yahoo/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Backlinks_Yahoo/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Indexes_Bing/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Indexes_Bing/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Indexes_Bing/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Indexes_Bing/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Indexes_Google/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Indexes_Google/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Indexes_Google/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Indexes_Google/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Indexes_Yahoo/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Indexes_Yahoo/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Indexes_Yahoo/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Indexes_Yahoo/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaCountry/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaCountry/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaCountry/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaCountry/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaGlobal/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaGlobal/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaGlobal/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaGlobal/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaUs/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaUs/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaUs/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_AlexaUs/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_DomainAuthority/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_DomainAuthority/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_DomainAuthority/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_DomainAuthority/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_Google/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_Google/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_Google/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_Google/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_MozRank/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_MozRank/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_MozRank/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_MozRank/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_PageAuthority/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_PageAuthority/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Ranks_PageAuthority/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Ranks_PageAuthority/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Facebook/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Facebook/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Facebook/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Facebook/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Google/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Google/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Google/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Google/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_LinkedIn/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_LinkedIn/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_LinkedIn/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_LinkedIn/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Pinterest/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Pinterest/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Pinterest/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Pinterest/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_StumbleUpon/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_StumbleUpon/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_StumbleUpon/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_StumbleUpon/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Twitter/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Twitter/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Twitter/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Twitter/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Vk/_run/with_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Vk/_run/with_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/PageRankr_Socials_Vk/_run/with_no_match/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/PageRankr_Socials_Vk/_run/with_no_match/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/alexa_ranks_edge_case_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/alexa_ranks_edge_case_1.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/failure_socials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/failure_socials.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/success_socials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/fixtures/vcr_cassettes/success_socials.yml -------------------------------------------------------------------------------- /spec/indexes/bing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/indexes/bing_spec.rb -------------------------------------------------------------------------------- /spec/indexes/google_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/indexes/google_spec.rb -------------------------------------------------------------------------------- /spec/indexes/yahoo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/indexes/yahoo_spec.rb -------------------------------------------------------------------------------- /spec/page_rankr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/page_rankr_spec.rb -------------------------------------------------------------------------------- /spec/proxy_services/random_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/proxy_services/random_spec.rb -------------------------------------------------------------------------------- /spec/proxy_services/round_robin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/proxy_services/round_robin_spec.rb -------------------------------------------------------------------------------- /spec/ranks/alexa_country_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/alexa_country_spec.rb -------------------------------------------------------------------------------- /spec/ranks/alexa_global_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/alexa_global_spec.rb -------------------------------------------------------------------------------- /spec/ranks/alexa_us_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/alexa_us_spec.rb -------------------------------------------------------------------------------- /spec/ranks/domain_authority_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/domain_authority_spec.rb -------------------------------------------------------------------------------- /spec/ranks/google/checksum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/google/checksum_spec.rb -------------------------------------------------------------------------------- /spec/ranks/google_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/google_spec.rb -------------------------------------------------------------------------------- /spec/ranks/moz_rank_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/moz_rank_spec.rb -------------------------------------------------------------------------------- /spec/ranks/page_authority_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/ranks/page_authority_spec.rb -------------------------------------------------------------------------------- /spec/site_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/site_spec.rb -------------------------------------------------------------------------------- /spec/socials/facebook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/socials/facebook_spec.rb -------------------------------------------------------------------------------- /spec/socials/google_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/socials/google_spec.rb -------------------------------------------------------------------------------- /spec/socials/linkedin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/socials/linkedin_spec.rb -------------------------------------------------------------------------------- /spec/socials/pinterest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/socials/pinterest_spec.rb -------------------------------------------------------------------------------- /spec/socials/stumble_upon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/socials/stumble_upon_spec.rb -------------------------------------------------------------------------------- /spec/socials/twitter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/socials/twitter_spec.rb -------------------------------------------------------------------------------- /spec/socials/vk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/socials/vk_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/custom_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blatyo/page_rankr/HEAD/spec/support/custom_matchers.rb --------------------------------------------------------------------------------