Metaprogramming V

class MyClass
  define_singleton_method(:singleton_method) do
    puts "This is a singleton method."
  end
end

MyClass.singleton_method