Require ruby file without .rb extension?

跟風遠走 提交于 2019-12-01 03:07:10

Use load instead:

load 'file-name'

We have scripts the users are allowed to call, which are accessed using symlinks. The symlinks exist in our /usr/local/bin directory, which is automatically included in their path via a minor adjustment to /etc/profile.

Our real scripts exist in a separate directory using the normal Ruby name, ending with ".rb". We can access those using require if necessary.

/usr/local/bin/foo --> /usr/local/share/app_name/foo.rb
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!