class WTOSC::Configuration

Public Instance Methods

after_hooks() click to toggle source
# File lib/configuration.rb, line 11
def after_hooks
  @after_hooks || []
end
after_hooks=(after_hooks) click to toggle source
# File lib/configuration.rb, line 15
def after_hooks=(after_hooks)
  @after_hooks = after_hooks
end
before_hooks() click to toggle source
# File lib/configuration.rb, line 3
def before_hooks
  @before_hooks || []
end
before_hooks=(before_hooks) click to toggle source
# File lib/configuration.rb, line 7
def before_hooks=(before_hooks)
  @before_hooks = before_hooks
end
default_options() click to toggle source
# File lib/configuration.rb, line 19
def default_options
  @default_options || {}
end
default_options=(default_options) click to toggle source
# File lib/configuration.rb, line 23
def default_options=(default_options)
  @default_options ||= default_options
end