module Tapp::Deprecated

Public Instance Methods

verbose() click to toggle source
# File lib/tapp/deprecated.rb, line 9
def verbose
  warn 'DEPRECATION WARNING: Tapp.verbose is deprecated. Use Tapp.config.report_caller instead.'

  config.report_caller
end
verbose=(bool) click to toggle source
# File lib/tapp/deprecated.rb, line 3
def verbose=(bool)
  warn 'DEPRECATION WARNING: Tapp.verbose= is deprecated. Use Tapp.config.report_caller= instead.'

  config.report_caller = bool
end