我想在一个文件中引用另一个文件中定义的函数 程序 hello.rb def hello print("hello,Ruby.\n") end
程序 use_hello.rb require "hello" hello()
运行 use_hello.rb 却提示
ruby use_hello.rb D:/RailsInstaller/Ruby1.9.3/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
' Exit code: 1 这是为什么呢? 我在网上找到的都是 ubuntu 下的解决方法。我照着它的解决方法可是在 Ruby 目录下没有找到相同的目录和文件require': cannot load such file -- hello (LoadError) from D:/RailsInstaller/Ruby1.9.3/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
require' from use_hello.rb:1:in `
我直接用 RailsInstaller 应该说所有东西都打包安装好了啊