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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
module Ditz
VERSION = "0.5"
def debug s
puts "# #{s}" if $verbose
end
module_function :debug
def self.has_readline?
@has_readline
end
def self.has_readline= val
@has_readline = val
end
begin
Ditz::has_readline = false
require 'readline'
Ditz::has_readline = true
rescue LoadError
# do nothing
end
def home_dir
@home ||=
ENV["HOME"] || (ENV["HOMEDRIVE"] && ENV["HOMEPATH"] ? ENV["HOMEDRIVE"] + ENV["HOMEPATH"] : nil) || begin
$stderr.puts "warning: can't determine home directory, using '.'"
"."
end
end
## helper for recursive search
def find_dir_containing target, start=Pathname.new(".")
return start if (start + target).exist?
unless start.parent.realpath == start.realpath
find_dir_containing target, start.parent
end
end
## my brilliant solution to the 'gem datadir' problem
def find_ditz_file fn
dir = $:.find { |p| File.exist? File.expand_path(File.join(p, fn)) }
raise "can't find #{fn} in any load path" unless dir
File.expand_path File.join(dir, fn)
end
def load_plugins fn
Ditz::debug "loading plugins from #{fn}"
plugins = YAML::load_file $opts[:plugins_file]
plugins.each do |p|
fn = Ditz::find_ditz_file "plugins/#{p}.rb"
Ditz::debug "loading plugin #{p.inspect} from #{fn}"
require File.expand_path(fn)
end
plugins
end
module_function :home_dir, :find_dir_containing, :find_ditz_file, :load_plugins
end
require 'model-objects'
require 'operator'
require 'views'
require 'hook'
require 'file-storage'
|