PageRankr 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/PageRankr.gemspec +3 -0
- data/README.md +4 -1
- data/lib/page_rankr/version.rb +1 -1
- metadata +17 -3
- data/VERSION +0 -1
data/PageRankr.gemspec
CHANGED
|
@@ -29,11 +29,14 @@ Gem::Specification.new do |s|
|
|
|
29
29
|
|
|
30
30
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
31
31
|
s.add_runtime_dependency(%q<nokogiri>, [">= 1.4.1"])
|
|
32
|
+
s.add_runtime_dependency(%q<json>, [">= 1.4.6"])
|
|
32
33
|
else
|
|
33
34
|
s.add_dependency(%q<nokogiri>, [">= 1.4.1"])
|
|
35
|
+
s.add_dependency(%q<json>, [">= 1.4.6"])
|
|
34
36
|
end
|
|
35
37
|
else
|
|
36
38
|
s.add_dependency(%q<nokogiri>, [">= 1.4.1"])
|
|
39
|
+
s.add_dependency(%q<json>, [">= 1.4.6"])
|
|
37
40
|
end
|
|
38
41
|
end
|
|
39
42
|
|
data/README.md
CHANGED
|
@@ -112,7 +112,10 @@ Then, just make sure you require the class and PageRankr and whenver you call Pa
|
|
|
112
112
|
* <del>Get Google Page Rank</del>
|
|
113
113
|
* <del>Implement Hashing Algorithm</del>
|
|
114
114
|
* <del>Get Alexa ranking</del>
|
|
115
|
-
*
|
|
115
|
+
* Use API's where possible
|
|
116
|
+
|
|
117
|
+
## Contributors
|
|
118
|
+
* [Druwerd](http://github.com/Druwerd) - Use Google Search API instead of scraping.
|
|
116
119
|
|
|
117
120
|
## Shout Out
|
|
118
121
|
Gotta give credit where credits due!
|
data/lib/page_rankr/version.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 5
|
|
8
|
-
-
|
|
9
|
-
version: 1.5.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.5.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Allen Madsen
|
|
@@ -32,6 +32,21 @@ dependencies:
|
|
|
32
32
|
version: 1.4.1
|
|
33
33
|
type: :runtime
|
|
34
34
|
version_requirements: *id001
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: json
|
|
37
|
+
prerelease: false
|
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
segments:
|
|
44
|
+
- 1
|
|
45
|
+
- 4
|
|
46
|
+
- 6
|
|
47
|
+
version: 1.4.6
|
|
48
|
+
type: :runtime
|
|
49
|
+
version_requirements: *id002
|
|
35
50
|
description: Easy way to retrieve Google Page Rank, Alexa Rank, and backlink counts
|
|
36
51
|
email: blatyo@gmail.com
|
|
37
52
|
executables: []
|
|
@@ -53,7 +68,6 @@ files:
|
|
|
53
68
|
- PageRankr.gemspec
|
|
54
69
|
- README.md
|
|
55
70
|
- Rakefile
|
|
56
|
-
- VERSION
|
|
57
71
|
- lib/page_rankr.rb
|
|
58
72
|
- lib/page_rankr/backlink.rb
|
|
59
73
|
- lib/page_rankr/backlinks.rb
|
data/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.4.3
|