From fc31291036e2646808e07052f59ae7088400663c Mon Sep 17 00:00:00 2001
From: Stephen Ball <sdball@gmail.com>
Date: Mon, 28 Nov 2011 12:23:37 -0500
Subject: [PATCH] updated cli to accept google premier key

---
 lib/geocoder/cli.rb | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/lib/geocoder/cli.rb b/lib/geocoder/cli.rb
index b12680ca..cb99c39b 100644
--- a/lib/geocoder/cli.rb
+++ b/lib/geocoder/cli.rb
@@ -13,8 +13,14 @@ module Geocoder
         opts.separator "\nOptions: "
 
         opts.on("-k <key>", "--key <key>",
-          "Key for geocoding API (optional for most)") do |key|
-          Geocoder::Configuration.api_key = key
+          "Key for geocoding API (optional for most). For Google Premier use 'key client channel' separated by spaces") do |key|
+          premier_key = key.split(' ')
+          if premier_key.length == 3
+            Geocoder::Configuration.api_key = premier_key
+          else
+            Geocoder::Configuration.api_key = key
+          end
+          puts Geocoder::Configuration.api_key.inspect
         end
 
         opts.on("-l <language>", "--language <language>",
@@ -30,6 +36,7 @@ module Geocoder
         opts.on("-s <service>", Geocoder.street_lookups, "--service <service>",
           "Geocoding service: #{Geocoder.street_lookups * ', '}") do |service|
           Geocoder::Configuration.lookup = service.to_sym
+          puts Geocoder::Configuration.lookup.inspect
         end
 
         opts.on("-t <seconds>", "--timeout <seconds>",
-- 
GitLab