class Bomb

Public Instance Methods

throw() click to toggle source
# File ezii-server/eezee.rb, line 24
def throw
  return """
    ```
      Local variables (5 first)
      #{local_variables.sample(5)}

      Instance variables (5 first)
      #{instance_variables.sample(5)}

      Public methods (5 first)
      #{public_methods.sample(5)}

      ENV (120 first chars)
      #{ENV.inspect[0...120]}

    ```
  """
end