# File lib/wikicloth/namespaces.rb, line 38 def method_missing(method, *args) if method.to_s =~ /^([a-z]+)_namespace_names$/ @@ns_cache ||= {} @@ns_cache[$1] ||= get_namespace_names_for($1) elsif method.to_s =~ /^([a-z]+)_namespace\?$/ namespace_type(args.first) == $1.to_sym ? true : false else super(method, *args) end end