バグ #617 » 0001-add-Gemfile-load-path-to-MIKUTTER_DIR-Gemfile.patch
| Gemfile | ||
|---|---|---|
|
Dir.glob(File.expand_path("~/.mikutter/plugin/*/Gemfile")){ |path|
|
||
|
eval File.open(path).read
|
||
|
}
|
||
|
Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), "plugin/*/Gemfile"))){ |path|
|
||
|
eval File.open(path).read
|
||
|
}
|
||
|
end
|
||