class Rake::LinkedList

def empty?

You should consider overriding this method if you implement your own .make method
object not empty by default
.make guards against a list being empty making any instantiated LinkedList
Is the list empty?
def empty?
  false
end