Method: Aruba::BasicConfiguration#before
- Defined in:
- lib/aruba/basic_configuration.rb
permalink #before(name) { ... } ⇒ Object
Define before-hook
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 |