Module: ActiveSupport::Dependencies::Blamable
- Defined in:
- activesupport/lib/active_support/dependencies.rb
Overview
Exception file-blaming.
Instance Method Summary collapse
- #blame_file!(file) ⇒ Object
- #blamed_files ⇒ Object
- #copy_blame!(exc) ⇒ Object
- #describe_blame ⇒ Object
Instance Method Details
#blame_file!(file) ⇒ Object
331 332 333 |
# File 'activesupport/lib/active_support/dependencies.rb', line 331 def blame_file!(file) (@blamed_files ||= []).unshift file end |
#blamed_files ⇒ Object
335 336 337 |
# File 'activesupport/lib/active_support/dependencies.rb', line 335 def blamed_files @blamed_files ||= [] end |
#copy_blame!(exc) ⇒ Object
344 345 346 347 |
# File 'activesupport/lib/active_support/dependencies.rb', line 344 def copy_blame!(exc) @blamed_files = exc.blamed_files.clone self end |
#describe_blame ⇒ Object
339 340 341 342 |
# File 'activesupport/lib/active_support/dependencies.rb', line 339 def describe_blame return nil if blamed_files.empty? "This error occurred while loading the following files:\n #{blamed_files.join "\n "}" end |