aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2011-05-18 20:36:25 +0900
committerAkira Matsuda <ronnie@dio.jp>2011-05-18 21:08:08 +0900
commit22ed6cb798b476f63e5d5b84cb28e054c4f1870e (patch)
tree645408575753b975ddb1bae5821c14d898a80a09 /railties/lib/rails/generators/erb/scaffold/templates/show.html.erb
parent9d8e2fb5e21da725755366ae2b7affe83ce1b6b0 (diff)
downloadrails-22ed6cb798b476f63e5d5b84cb28e054c4f1870e.tar.gz
rails-22ed6cb798b476f63e5d5b84cb28e054c4f1870e.tar.bz2
rails-22ed6cb798b476f63e5d5b84cb28e054c4f1870e.zip
for ... in => .each
I believe this is more modern way
Diffstat (limited to 'railties/lib/rails/generators/erb/scaffold/templates/show.html.erb')
-rw-r--r--railties/lib/rails/generators/erb/scaffold/templates/show.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb b/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb
index c0e5ccff1e..67f263efbb 100644
--- a/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb
+++ b/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb
@@ -1,6 +1,6 @@
<p id="notice"><%%= notice %></p>
-<% for attribute in attributes -%>
+<% attributes.each do |attribute| -%>
<p>
<b><%= attribute.human_name %>:</b>
<%%= @<%= singular_table_name %>.<%= attribute.name %> %>