Skip to content

Instantly share code, notes, and snippets.

@aruprakshit
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save aruprakshit/374ef9074f39dd793ad4 to your computer and use it in GitHub Desktop.

Select an option

Save aruprakshit/374ef9074f39dd793ad4 to your computer and use it in GitHub Desktop.
Creating a method which has the same name as its class name..like Integer(), Array() etc.
module Kernel
module_function
def CustomClass()
CustomKlass.new
end
end
class CustomKlass
end
CustomClass() # => #<CustomKlass:0x9c0165c>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment