diff --git a/lib/geocoder/cli.rb b/lib/geocoder/cli.rb index b12680ca9b03ee70f36f6f03e1bd7d3ff9a8d91b..cb99c39b51bb0ecb27f5a452384bfeea44d4db7b 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>",