Below is a small screenshot from within RubyMine 3.1. I am just starting to learn Ruby. The code here is from the Presenter-First MVP C# code generator over at atomicobject.com.
I am using this project along with a book to learn Ruby. The documentation for puts
shows that it expects at least one parameter. Yet this code appears "somewhat legal" for two reasons:
- The code appears to work fine when I step thru it via the debugger.
- Searching online, and even here at SO, shows that
puts
w/o arguments creates a newline.
However, is it bad practice to do this (hence the RubyMine warning)? The code I am looking at is from 2006. I'm running it with Ruby 1.9.2 if that matters any.