In Ruby what is the difference between those two (in code):
Class.method
Class#method
Class#method is not valid code. It is only used in documentation. method should be an instance method.
Class.method or object.method is the actual method belonging to the object. Class is an object too. It is valid code.