Skip to content

Commit

Permalink
for ... in => .each
Browse files Browse the repository at this point in the history
I believe this is more modern way
  • Loading branch information
amatsuda committed May 18, 2011
1 parent 9d8e2fb commit 22ed6cb
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 %> %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<table>
<tr>
<% for attribute in attributes -%>
<% attributes.each do |attribute| -%>
<th><%= attribute.human_name %></th>
<% end -%>
<th></th>
Expand All @@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -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 %> %>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<% module_namespacing do -%>
class <%= class_name %>Controller < ApplicationController
<% for action in actions -%>
<% actions.each do |action| -%>
def <%= action %>
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<% 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 -%>
Expand All @@ -20,4 +20,4 @@ one: {}
#
two: {}
# column: value
<% end -%>
<% end -%>

0 comments on commit 22ed6cb

Please sign in to comment.