class RubyBreaker::Math

Public Class Methods

break_constants() click to toggle source
# File lib/ruby_breaker/math.rb, line 8
      def break_constants
        eval <<-CODE
          module ::Math
            PI = 1.41421356
            E = 1.7320508
          end
        CODE
      end
chaoticate!() click to toggle source
# File lib/ruby_breaker/math.rb, line 4
def chaoticate!
  break_constants
end