class Grape::Util::Lazy::Block

def evaluate

def evaluate
  @block.call({})
end

def evaluate_from(configuration)

def evaluate_from(configuration)
  @block.call(configuration)
end

def initialize(&new_block)

def initialize(&new_block)
  @block = new_block
end

def lazy?

def lazy?
  true
end

def to_s

def to_s
  evaluate.to_s
end