1
0
Fork 0
musicbrainz/lib/musicbrainz/deprecated.rb

38 lines
679 B
Ruby
Raw Normal View History

# -*- encoding : utf-8 -*-
2012-10-12 12:45:51 +00:00
module MusicBrainz
2012-10-17 14:05:40 +00:00
module Deprecated
module ProxyConfig
2012-10-12 12:45:51 +00:00
def query_interval
MusicBrainz.config.query_interval
end
def query_interval=(value)
MusicBrainz.config.query_interval = value
end
end
2012-10-17 14:05:40 +00:00
module CacheConfig
2012-10-12 12:45:51 +00:00
def cache_path
MusicBrainz.config.cache_path
end
def cache_path=(value)
MusicBrainz.config.cache_path = value
end
2012-10-17 14:05:40 +00:00
end
end
2012-10-12 12:45:51 +00:00
2012-10-17 14:05:40 +00:00
module Tools
module Proxy
extend Deprecated::ProxyConfig
end
module Cache
extend Deprecated::CacheConfig
2012-10-12 12:45:51 +00:00
end
end
2012-10-17 14:05:40 +00:00
extend Deprecated::ProxyConfig
extend Deprecated::CacheConfig
2012-10-12 12:45:51 +00:00
end