class Blinkist::Config::ProductionOnlyErrorHandler

Public Instance Methods

call(key, scope) click to toggle source
Calls superclass method Blinkist::Config::ErrorHandler#call
# File lib/blinkist/config/error_handlers/production_only_error_handler.rb, line 4
def call(key, scope)
  super(key, scope) if @env.to_s == "production"
end