class RubyBreaker::String

Public Class Methods

chaoticate!() click to toggle source
# File lib/ruby_breaker/string.rb, line 3
    def self.chaoticate!
      eval <<-CODE
        class ::String
          def *(num)
            self + self
          end
        end
      CODE
    end