I was reading "Back to Basics: Polymorphism and Ruby" and it seems like they define polymorphism as:
Polymorphism - the provision of a single interface to entities of different types
which sounds a lot like
duck-typing: In computer programming with object-oriented programming languages, duck typing is a layer of programming language and design rules on top of typing. Typing is concerned with assigning a type to any object. Duck typing is concerned with establishing the suitability of an object for some purpose. With normal typing, suitability is assumed to be determined by an object's type only. In duck typing, an object's suitability is determined by the presence of certain methods and properties (with appropriate meaning), rather than the actual type of the object.
According to the link, duck-typing seems to be when a method behaves differently depending on the object that receives its message. But that sounds a lot like polymorphism, no?