lib/exception_handler/config.rb in exception_handler-0.3.3 vs lib/exception_handler/config.rb in exception_handler-0.3.5

- old
+ new

@@ -6,19 +6,21 @@ ########################################### module ExceptionHandler class Config - attr_accessor :db, :social + attr_accessor :db, :social, :error_layout, :exception_layout def initialize @db = false # -> db name (false = no; true = "errors"; [value] = [value]) @social = { twitter: "http://twitter.com/frontlineutils", facebook: "https://facebook.com/frontline.utilities", linkedin: "https://linkedin.com/company/frontline-utilities", youtube: "https://youtube.com/user/frontlineutils", fusion: "http://frontlinefusion.com/frontlineutils" } + @error_layout = nil + @exception_layout = nil end end -end \ No newline at end of file +end