Merge pull request #1123 from amatsuda/generator_for_to_each

change `for ... in` in the generator templates to Enumerator#each
This commit is contained in:
José Valim
2011-05-18 06:10:11 -07:00
7 changed files with 10 additions and 10 deletions

View File

@@ -11,7 +11,7 @@
</div>
<%% end %>
<% for attribute in attributes -%>
<% attributes.each do |attribute| -%>
<div class="field">
<%%= f.label :<%= attribute.name %> %><br />
<%%= f.<%= attribute.field_type %> :<%= attribute.name %> %>

View File

@@ -2,7 +2,7 @@
<table>
<tr>
<% for attribute in attributes -%>
<% attributes.each do |attribute| -%>
<th><%= attribute.human_name %></th>
<% end -%>
<th></th>
@@ -12,7 +12,7 @@
<%% @<%= plural_table_name %>.each do |<%= singular_table_name %>| %>
<tr>
<% for attribute in attributes -%>
<% attributes.each do |attribute| -%>
<td><%%= <%= singular_table_name %>.<%= attribute.name %> %></td>
<% end -%>
<td><%%= link_to 'Show', <%= singular_table_name %> %></td>

View File

@@ -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 %> %>

View File

@@ -1,6 +1,6 @@
<% module_namespacing do -%>
class <%= class_name %>Controller < ApplicationController
<% for action in actions -%>
<% actions.each do |action| -%>
def <%= action %>
end

View File

@@ -7,7 +7,7 @@ class <%= class_name %>ControllerTest < ActionController::TestCase
# assert true
# end
<% else -%>
<% for action in actions -%>
<% actions.each do |action| -%>
test "should get <%= action %>" do
get :<%= action %>
assert_response :success

View File

@@ -2,7 +2,7 @@ require 'test_helper'
<% module_namespacing do -%>
class <%= class_name %>Test < ActionMailer::TestCase
<% for action in actions -%>
<% actions.each do |action| -%>
test "<%= action %>" do
mail = <%= class_name %>.<%= action %>
assert_equal <%= action.to_s.humanize.inspect %>, mail.subject

View File

@@ -2,12 +2,12 @@
<% unless attributes.empty? -%>
one:
<% for attribute in attributes -%>
<% attributes.each do |attribute| -%>
<%= attribute.name %>: <%= attribute.default %>
<% end -%>
two:
<% for attribute in attributes -%>
<% attributes.each do |attribute| -%>
<%= attribute.name %>: <%= attribute.default %>
<% end -%>
<% else -%>
@@ -20,4 +20,4 @@ one: {}
#
two: {}
# column: value
<% end -%>
<% end -%>