blob: 226f687ed9bfe3310241d1cfcf26f72e547ef34d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
module Irc
module Config
@@datadir = nil
# setup pkg-based configuration - i.e. where were we installed to, where
# are our data files, etc.
begin
debug "trying to load rubygems"
require 'rubygems'
debug "loaded rubygems, looking for rbot-#$version"
gemname, gem = Gem.source_index.find{|name, spec| spec.name == 'rbot' && spec.version.version == $version}
debug "got gem #{gem}"
if gem && path = gem.full_gem_path
debug "installed via rubygems to #{path}"
@@datadir = "#{path}/data/rbot"
else
debug "not installed via rubygems"
end
rescue LoadError,NameError,NoMethodError
debug "no rubygems installed"
end
if @@datadir.nil?
begin
require 'rbot/pkgconfig'
@@datadir = PKGConfig::DATADIR
rescue LoadError
puts "fatal - no way to determine data dir"
exit 2
end
end
def Config.datadir
@@datadir
end
end
end
|