google 1.0.0 → 1.0.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/lib/google.rb +9 -9
- metadata +1 -1
data/lib/google.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
1
|
+
require 'trollop/lib/trollop'
|
2
|
+
require 'google/utils'
|
3
|
+
require 'google/search'
|
4
|
+
require 'google/request'
|
5
|
+
require 'google/display_serp'
|
6
|
+
require 'google/input'
|
7
|
+
require 'google/grab'
|
8
|
+
require 'google/pipe-view'
|
9
9
|
|
10
10
|
opts = Trollop::options do
|
11
|
-
version "google v1.0.
|
11
|
+
version "google v1.0.1 (c) 2012 Kerrick Long http://kerrick.github.com/google"
|
12
12
|
banner <<-EOM
|
13
13
|
The google gem is a simple tool to search Gooogle with via a CLI.
|
14
14
|
Usage:
|