1.方法 定义如下所示: def string_message(str='') if str.empty? "It's an empty string!" else "The string is nonempty." end end 参数:' '是参数str的默认值,调用函数时,str参数是可选的,如果不指定,就使用默认值.参数名称任意.返回值:Ruby方法不显示指定返回值,方法的返回值是最后一个语句的计算结果,也可以显式指定返回值. 下面方法和上面的方法等价: d…
rails Installer之后的调整rails.bat文件 出现系统找不到指定路径 学习了:http://www.jianshu.com/p/065355a731ee 修改rails.bat为 @ECHO OFF IF NOT "%~f0" == "~f0" GOTO :WinNT ECHO.This version of Ruby has not been built with support //Me. GOTO :EOF :WinNT @"%~d…