class NoLambdaError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/r_kit/dsl/no_lambda_error.rb, line 2
  def initialize
    # TODO: add a link to smthng that explain the difference between proc & lambda
    # TODO: why not one of my videos ;)
    super %Q{
NoLambdaError: You need to use a lambda, not a proc
  Use the fancy ruby2 `->(){}', or the good old `lambda{}' syntax
    }
  end