Flowdock
method

define_around_helper

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: Logger
define_around_helper(level) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/logger.rb, line 4
  def self.define_around_helper(level)
    module_eval "def around_\#{level}(before_message, after_message, &block)\nself.\#{level}(before_message)\nreturn_value = block.call(self)\nself.\#{level}(after_message)\nreturn return_value\nend\n"
  end
Register or log in to add new notes.