Part 1 in the series A Comprehensive Guide To Debugging Rails
Ruby / Rails Built-in Mirrors
Ruby compiler checks: Run $ ruby -c myfile.rb to ask Ruby to check the syntax of your script and find serious errors that would stop your program from even starting. The syntax checker does not actually run your code, so thereâs no need to worry about the program being syntax checked performing some destructive action that would occur were the code executed normally. Given the size of a Rails project...
Published on July 21, 2016 16:34