With twitter-bootstrap-rails installed, using the generator:
rails g bootstrap:themed Model
creates views that contain lines such as:
<th><%= model_class.human_attribute_name(:comment_date) %></th>
<th><%= model_class.human_attribute_name(:comment_time) %></th>
where the default rails generator just inserts the human readable column name directly:
<th>Comment date</th>
<th>Comment time</th>
which makes for cleaner views, and seems like it would be more efficient at run-time.
Is there a benefit to the twitter-bootstrap-rails generated views?
Thanks!
(PS, The developers website is offline, and neither github nor google+ allow sending private messages, and neither an "issue" on github nor a public comment on a google+ post seemed appropriate for this question, so hoping someone here might be familiar with the use-case for model_class.human_attribute_name())