From: "D. Deryl Downey" Date: 2013-03-03T01:09:05+09:00 Subject: Re: How differs `Private` methods from `singleton methods`? Private methods are methods defined in a class that only instances of that class can see and use. Singleton methods are methods added on to an individual instance that other instances of the same class will not have. Only THAT instance will have that method. (You can even define a singleton on a class, but the *instances* of that class won't have the singleton method added. It applies to that class (which if you know ruby you know a class is also an object in its own right) object only. On 3/2/13 8:09 AM, "Kumar R." wrote: >Can anyone help me to understand the difference between `private >methods` and `singleton methods` in Ruby? > >-- >Posted via http://www.ruby-forum.com/. >