Class: Fourchette::Callbacks

Inherits:
Object
  • Object
show all
Includes:
Logger
Defined in:
lib/fourchette/callbacks.rb

Instance Method Summary collapse

Methods included from Logger

#logger

Constructor Details

#initialize(params) ⇒ Callbacks

Returns a new instance of Callbacks.



4
5
6
# File 'lib/fourchette/callbacks.rb', line 4

def initialize params
  @params = params
end

Instance Method Details

#after_allObject



12
13
14
# File 'lib/fourchette/callbacks.rb', line 12

def after_all
  logger.info 'Placeholder for after steps...'
end

#before_allObject



8
9
10
# File 'lib/fourchette/callbacks.rb', line 8

def before_all
  logger.info 'Placeholder for before steps...'
end