バグ #75 » utils.patch
core/utils.rb (作業コピー) | ||
---|---|---|
64 | 64 |
notice "load #{rb}" |
65 | 65 |
require rb |
66 | 66 |
when FileTest.directory?(File.join(rb)) |
67 |
notice "load #{File.join(rb, File.basename(rb))}" |
|
68 |
require File.join(rb, File.basename(rb)) |
|
67 |
plugin = (File.join(rb, File.basename(rb))) |
|
68 |
if FileTest.exist? plugin |
|
69 |
notice "load #{plugin}" |
|
70 |
require plugin |
|
71 |
end |
|
72 |
notice "not loaded #{plugin}" |
|
69 | 73 |
else |
70 | 74 |
notice "not loaded #{rb}" end } end end |
71 | 75 |