Module: HamCallsign

Defined in:
lib/ham_callsign.rb,
lib/ham_callsign/version.rb

Constant Summary collapse

VERSION =
"0.1.3"

Class Method Summary collapse

Class Method Details

.lookup(callsign) ⇒ Object



7
8
9
10
# File 'lib/ham_callsign.rb', line 7

def self.lookup(callsign)
  response = RestClient.get "http://search.ham.io/api/call/#{callsign}"
  callsign = MultiJson.load(response)
end