Created
September 21, 2013 14:41
-
-
Save abhishek0/6651269 to your computer and use it in GitHub Desktop.
Mailer view using helper throws error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ApplicationHelper | |
def readable_bool val | |
val ? "Yes" : "No" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<td><%= readable_bool(@inquiry.car_required) %></td> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment