serpentor 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5721a6706eed45c3475593f1cfa63dd63588b6ac
4
+ data.tar.gz: d9b86743d7b7b3ec18b3fcff88968db9731ba698
5
+ SHA512:
6
+ metadata.gz: d2ac8c9a40ace6baad68c70f1a865f20928d962441523d85e21441c6468fdada7ba48cd99bdeb82e29252cc07713150bfb62cf318e19454c669e8b86d9b337db
7
+ data.tar.gz: bf6ad6b0edd645de468082791eb083d49ab3b837b98f67b0bce73116621ea0538ad93a6a7234eb962c906c340410ed08a9012380e00593bffff677ee9874ffa6
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in serpentor.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Nick Plante
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,55 @@
1
+ # Serpentor
2
+
3
+ Simple utility to check search engine result rankings for a given set of keywords.
4
+ Right now only Google search is supported.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'serpentor'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install serpentor
21
+
22
+ ## Usage
23
+
24
+ Run an individual keyword test:
25
+
26
+ ```ruby
27
+ rank = Serpentor::Rank.check('SOSV', 'sosv.com')
28
+ puts "Rank is #{rank.value} (#{rank.url})"
29
+ ```
30
+
31
+ Or configure a bulk keyword test:
32
+
33
+ ```ruby
34
+ config = Serpentor.configure do |config|
35
+ config.keywords = ["keyword1", "keyword2"]
36
+ config.host = "my-site.com"
37
+ config.limit = 10 # only care if result is on first page
38
+ end
39
+
40
+ results = Serpentor.rank
41
+ results.each do |res|
42
+ puts "Rank for '#{res.keyword}' is #{res.rank || 'N/A'} (#{res.url})"
43
+ end
44
+ ```
45
+
46
+ The first 5 pages (50 results) are checked by default. You can further limit
47
+ that number, for example, if you only care about first page results.
48
+
49
+ ## Contributing
50
+
51
+ 1. Fork it ( https://github.com/[my-github-username]/serpentor/fork )
52
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
53
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
54
+ 4. Push to the branch (`git push origin my-new-feature`)
55
+ 5. Create a new Pull Request
@@ -0,0 +1,5 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new("spec")
5
+ task default: :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "serpentor"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,43 @@
1
+ require "serpentor/config"
2
+ require "serpentor/rank"
3
+ require "serpentor/version"
4
+
5
+ require "google-search"
6
+
7
+ module Serpentor
8
+ class << self
9
+ attr_accessor :configuration
10
+ end
11
+
12
+ def self.configure
13
+ self.configuration ||= Config.new
14
+ yield(configuration)
15
+ end
16
+
17
+ def self.rank(options={})
18
+ keywords = options[:keywords]
19
+ host = options[:host]
20
+ limit = options[:limit]
21
+
22
+ if configuration
23
+ keywords ||= configuration.keywords
24
+ host ||= configuration.host
25
+ limit ||= configuration.limit
26
+ end
27
+
28
+ if keywords.nil? || host.nil?
29
+ raise ArgumentError.new("keywords and host required")
30
+ end
31
+
32
+ results = []
33
+ rank_options = {}
34
+ rank_options[:limit] = limit if limit
35
+ keywords = [keywords] if keywords.is_a?(String)
36
+
37
+ keywords.each do |keyword|
38
+ results << Rank.check(keyword, host, rank_options)
39
+ end
40
+
41
+ results
42
+ end
43
+ end
@@ -0,0 +1,11 @@
1
+ module Serpentor
2
+ class Config
3
+ attr_accessor :keywords, :host, :limit
4
+
5
+ def initialize
6
+ @keywords = []
7
+ @host = []
8
+ @limit = nil
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,53 @@
1
+ module Serpentor
2
+ class Rank
3
+ attr_reader :keyword, :host, :url, :value, :requested_at
4
+
5
+ def initialize(keyword, host, options={})
6
+ @keyword = keyword
7
+ @host = host
8
+ @limit = options[:limit] || 50
9
+ end
10
+
11
+ class << self
12
+ def check(keyword, host, options={})
13
+ new(keyword, host, options).check
14
+ end
15
+ end
16
+
17
+ def check
18
+ @requested_at ||= Time.now
19
+ position = 1
20
+
21
+ Google::Search::Web.new(query: keyword).each_item do |res|
22
+ return self if !!@value || position > @limit
23
+
24
+ if URI.parse(res.uri).host == host
25
+ @value = position
26
+ @url = res.uri
27
+ else
28
+ position += 1
29
+ end
30
+ end
31
+
32
+ self
33
+ end
34
+
35
+ def rank
36
+ value
37
+ end
38
+
39
+ def requested?
40
+ !requested_at.nil?
41
+ end
42
+
43
+ def ranked?
44
+ check unless requested?
45
+ !value.nil?
46
+ end
47
+
48
+ def unranked?
49
+ check unless requested?
50
+ value.nil?
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,3 @@
1
+ module Serpentor
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'serpentor/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "serpentor"
8
+ spec.version = Serpentor::VERSION
9
+ spec.authors = ["Nick Plante"]
10
+ spec.email = ["nap@zerosum.org"]
11
+
12
+ spec.summary = %q{Automates checking of Search Engine Results for a given set of keywords.}
13
+ spec.homepage = "http://github.com/zapnap/serpentor"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.9"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rspec", "~> 3.3"
24
+ spec.add_development_dependency "vcr", "~> 2.9"
25
+ spec.add_development_dependency "webmock", "~> 1.22"
26
+ spec.add_dependency "google-search", "~> 1.0"
27
+ end
metadata ADDED
@@ -0,0 +1,142 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: serpentor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Nick Plante
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-10-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: vcr
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.9'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.9'
69
+ - !ruby/object:Gem::Dependency
70
+ name: webmock
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.22'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.22'
83
+ - !ruby/object:Gem::Dependency
84
+ name: google-search
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.0'
97
+ description:
98
+ email:
99
+ - nap@zerosum.org
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".rspec"
106
+ - ".travis.yml"
107
+ - Gemfile
108
+ - LICENSE.txt
109
+ - README.md
110
+ - Rakefile
111
+ - bin/console
112
+ - bin/setup
113
+ - lib/serpentor.rb
114
+ - lib/serpentor/config.rb
115
+ - lib/serpentor/rank.rb
116
+ - lib/serpentor/version.rb
117
+ - serpentor.gemspec
118
+ homepage: http://github.com/zapnap/serpentor
119
+ licenses:
120
+ - MIT
121
+ metadata: {}
122
+ post_install_message:
123
+ rdoc_options: []
124
+ require_paths:
125
+ - lib
126
+ required_ruby_version: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ required_rubygems_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ requirements: []
137
+ rubyforge_project:
138
+ rubygems_version: 2.4.7
139
+ signing_key:
140
+ specification_version: 4
141
+ summary: Automates checking of Search Engine Results for a given set of keywords.
142
+ test_files: []