require File.expand_path("../account*.rb",__FILE__)
但当然这不起作用.做这个的最好方式是什么?
Dir.glob(File.expand_path("../account*.rb",__FILE__)).each do |file| require file end
expand_path方法仅解析路径.它不会扩展通配符.