gsearch-parser 0.0.1 → 0.0.2
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/Rakefile +12 -0
- data/VERSION +1 -0
- data/gsearch-parser.gemspec +42 -13
- metadata +26 -9
- data/.gitignore +0 -17
data/Rakefile
CHANGED
|
@@ -1,2 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env rake
|
|
2
2
|
require "bundler/gem_tasks"
|
|
3
|
+
require 'jeweler'
|
|
4
|
+
|
|
5
|
+
Jeweler::Tasks.new do |gem|
|
|
6
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
7
|
+
gem.name = "gsearch-parser"
|
|
8
|
+
gem.summary = %Q{Google search result parser.}
|
|
9
|
+
gem.description = %Q{Queries Google search and parses the resulting web page for content.}
|
|
10
|
+
gem.email = "diegormnetto@gmail.com"
|
|
11
|
+
gem.homepage = "https://github.com/diegonetto/gsearch-parser"
|
|
12
|
+
gem.authors = ["Diego Netto"]
|
|
13
|
+
end
|
|
14
|
+
Jeweler::RubygemsDotOrgTasks.new
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.2
|
data/gsearch-parser.gemspec
CHANGED
|
@@ -1,17 +1,46 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
1
4
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
require File.expand_path('../lib/gsearch-parser/version', __FILE__)
|
|
3
5
|
|
|
4
|
-
Gem::Specification.new do |
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
gem.description = %q{Parses Google search results.}
|
|
8
|
-
gem.summary = %q{Provides an API for querying Google searches and parsing the results.}
|
|
9
|
-
gem.homepage = ""
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = "gsearch-parser"
|
|
8
|
+
s.version = "0.0.2"
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Diego Netto"]
|
|
12
|
+
s.date = "2012-04-11"
|
|
13
|
+
s.description = "Queries Google search and parses the resulting web page for content."
|
|
14
|
+
s.email = "diegormnetto@gmail.com"
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.md"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
"Gemfile",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.md",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"gsearch-parser.gemspec",
|
|
26
|
+
"lib/gsearch-parser.rb",
|
|
27
|
+
"lib/gsearch-parser/version.rb"
|
|
28
|
+
]
|
|
29
|
+
s.homepage = "https://github.com/diegonetto/gsearch-parser"
|
|
30
|
+
s.require_paths = ["lib"]
|
|
31
|
+
s.rubygems_version = "1.8.21"
|
|
32
|
+
s.summary = "Google search result parser."
|
|
33
|
+
|
|
34
|
+
if s.respond_to? :specification_version then
|
|
35
|
+
s.specification_version = 3
|
|
36
|
+
|
|
37
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
38
|
+
s.add_runtime_dependency(%q<gsearch-parser>, [">= 0"])
|
|
39
|
+
else
|
|
40
|
+
s.add_dependency(%q<gsearch-parser>, [">= 0"])
|
|
41
|
+
end
|
|
42
|
+
else
|
|
43
|
+
s.add_dependency(%q<gsearch-parser>, [">= 0"])
|
|
44
|
+
end
|
|
17
45
|
end
|
|
46
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gsearch-parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,23 +10,40 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
date: 2012-04-11 00:00:00.000000000 Z
|
|
13
|
-
dependencies:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: gsearch-parser
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
30
|
+
description: Queries Google search and parses the resulting web page for content.
|
|
31
|
+
email: diegormnetto@gmail.com
|
|
17
32
|
executables: []
|
|
18
33
|
extensions: []
|
|
19
|
-
extra_rdoc_files:
|
|
34
|
+
extra_rdoc_files:
|
|
35
|
+
- LICENSE
|
|
36
|
+
- README.md
|
|
20
37
|
files:
|
|
21
|
-
- .gitignore
|
|
22
38
|
- Gemfile
|
|
23
39
|
- LICENSE
|
|
24
40
|
- README.md
|
|
25
41
|
- Rakefile
|
|
42
|
+
- VERSION
|
|
26
43
|
- gsearch-parser.gemspec
|
|
27
44
|
- lib/gsearch-parser.rb
|
|
28
45
|
- lib/gsearch-parser/version.rb
|
|
29
|
-
homepage:
|
|
46
|
+
homepage: https://github.com/diegonetto/gsearch-parser
|
|
30
47
|
licenses: []
|
|
31
48
|
post_install_message:
|
|
32
49
|
rdoc_options: []
|
|
@@ -49,5 +66,5 @@ rubyforge_project:
|
|
|
49
66
|
rubygems_version: 1.8.21
|
|
50
67
|
signing_key:
|
|
51
68
|
specification_version: 3
|
|
52
|
-
summary:
|
|
69
|
+
summary: Google search result parser.
|
|
53
70
|
test_files: []
|