Module: Errors
- Defined in:
- lib/railsbricks/errors.rb
Class Method Summary collapse
Class Method Details
.display_error(msg, show_issues_url = false) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/railsbricks/errors.rb', line 6 def self.display_error(msg, show_issues_url = false) puts StringHelpers.wputs msg, :error puts if show_issues_url StringHelpers.wputs "If you can't fix this error, please file an issue report at #{ConfigValues.issue_path}" puts end end |