2012-07-04 13:10:47 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
module MusicBrainz
|
|
|
|
def self.query_interval=(sec)
|
|
|
|
MusicBrainz::Tools::Proxy.query_interval = sec
|
2012-07-06 15:24:50 +00:00
|
|
|
STDOUT.send :puts, "WARNING! MusicBrainz.query_interval is deprecated. Use MusicBrainz::Tools::Proxy.query_interval"
|
2012-07-04 13:10:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.cache_path=(path)
|
|
|
|
MusicBrainz::Tools::Cache.cache_path = path
|
2012-07-06 15:24:50 +00:00
|
|
|
$stdout.send :puts, "WARNING! MusicBrainz.cache_path is deprecated. Use MusicBrainz::Tools::Cache.cache_path"
|
2012-07-04 13:10:47 +00:00
|
|
|
end
|
|
|
|
end
|