Tag: Exception
Hoptoad: A Rails Exception Handling Service
Many of you guys(as me) may have used Exception Notifier plugin to get Rails app exceptions right into your mailbox, and may also have faced some problem like this. Also if you have 2-3 or more apps running in production then managing such exception mails is also a big headache. In such case one have … Continue reading Hoptoad: A Rails Exception Handling Service
Git Error: trailing whitespace, indent SP followed by a TAB, unresolved merge conflict
I have been using Git from last few days, and faced following errors while committing: 1) Trailing whitespace 2) Indent SP followed by a TAB 3) Unresolved merge conflict The first error “Trailing whitespace” is because of carriage-return/line-feed(windows style line feed/end). To resolve this problem comment following lines(58-60) in .git/hooks/pre-commit file: The second one “Indent … Continue reading Git Error: trailing whitespace, indent SP followed by a TAB, unresolved merge conflict