Cook
Check if a variable is iterable
Here, we basically check if there is an each
method on the @names
instance variable
if @names.respond_to?("each")
Access shell variables
require 'pathname'
Pathname.new(ENV['HOME'])
Here, we basically check if there is an each
method on the @names
instance variable
if @names.respond_to?("each")
require 'pathname'
Pathname.new(ENV['HOME'])