Skip to content
Snippets Groups Projects
Commit f4a4ec75 authored by Alex Reisner's avatar Alex Reisner
Browse files

Kill dependency on cattr_accessor.

parent 98affdfd
No related branches found
No related tags found
No related merge requests found
module Geocoder
class Configuration
cattr_accessor :timeout, :lookup, :yahoo_appid
def self.timeout; @@timeout; end
def self.timeout=(obj); @@timeout = obj; end
def self.lookup; @@lookup; end
def self.lookup=(obj); @@lookup = obj; end
def self.yahoo_appid; @@yahoo_appid; end
def self.yahoo_appid=(obj); @@yahoo_appid = obj; end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment