Method: Aruba::BasicConfiguration#before

Defined in:
lib/aruba/basic_configuration.rb

#before(name) { ... } ⇒ Object

Define before-hook

Parameters:

  • name (Symbol, String)

    The name of the hook

Yields:

  • The code block which should be run. This is a configure time only option

Raises:

  • (ArgumentError)
[View source]

112
113
114
115
116
117
118
119
# File 'lib/aruba/basic_configuration.rb', line 112

def before(name, &block)
  name = format("%s_%s", "before_", name.to_s).to_sym
  raise ArgumentError, "A block is required" unless block

  @hooks.append(name, block)

  self
end