Sha256: 418086cf86a438d200a91ff54c8fc4d9e0fdd4fe3e27dcd0724feb82ecf7db26
Contents?: true
Size: 853 Bytes
Versions: 1
Compression:
Stored size: 853 Bytes
Contents
$knjpath = "knj/" if !$knjpath module Knj CONFIG = {} def self.const_missing(name) if name == :Db filepath = "#{$knjpath}knjdb/libknjdb" elsif name == :Wref_map filepath = "#{$knjpath}wref" else filepath = "#{$knjpath}#{name.to_s.downcase}" end require filepath raise "Constant still not defined: '#{name}'." if !Knj.const_defined?(name) return Knj.const_get(name) end def self.appserver_cli(filename) Knj::Os.chdir_file(filename) require "#{$knjpath}/includes/appserver_cli.rb" end def self.dirname(filepath) raise "Filepath does not exist: #{filepath}" if !File.exists?(filepath) return File.realpath(File.dirname(filepath)) end #Returns the path of the knjrbfw-framework. def self.knjrbfw_path return File.realpath(File.dirname(__FILE__)) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
knjrbfw-0.0.32 | lib/knj/knj.rb |