diff options
author | Akira Matsuda <ronnie@dio.jp> | 2010-12-25 04:41:50 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2010-12-25 04:46:41 +0900 |
commit | 0a1f5f751193d2bbb41ae91226ab4567c502f51c (patch) | |
tree | e96f298d85c59c381b352e4cda3f3888aace4d90 /actionpack | |
parent | f17e1b2f7fd8e09370f3a1ddb3c8526ba71d54c2 (diff) | |
download | rails-0a1f5f751193d2bbb41ae91226ab4567c502f51c.tar.gz rails-0a1f5f751193d2bbb41ae91226ab4567c502f51c.tar.bz2 rails-0a1f5f751193d2bbb41ae91226ab4567c502f51c.zip |
for ... in => each ... do
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/base.rb | 2 | ||||
-rw-r--r-- | actionpack/lib/action_view/partials.rb | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index 92ff3380b0..f1ea14fc29 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -18,7 +18,7 @@ module ActionView #:nodoc: # following loop for names: # # <b>Names of all the people</b> - # <% for person in @people %> + # <% @people.each do |person| %> # Name: <%= person.name %><br/> # <% end %> # diff --git a/actionpack/lib/action_view/partials.rb b/actionpack/lib/action_view/partials.rb index cd3f130dc4..b823dbcf6a 100644 --- a/actionpack/lib/action_view/partials.rb +++ b/actionpack/lib/action_view/partials.rb @@ -19,7 +19,7 @@ module ActionView # # <%= render :partial => "account", :locals => { :account => @buyer } %> # - # <% for ad in @advertisements %> + # <% @advertisements.each do |ad| %> # <%= render :partial => "ad", :locals => { :ad => ad } %> # <% end %> # @@ -44,12 +44,12 @@ module ActionView # # The <tt>:object</tt> option can be used to directly specify which object is rendered into the partial; # useful when the template's object is elsewhere, in a different ivar or in a local variable for instance. - # + # # Revisiting a previous example we could have written this code: - # + # # <%= render :partial => "account", :object => @buyer %> # - # <% for ad in @advertisements %> + # <% @advertisements.each do |ad| %> # <%= render :partial => "ad", :object => ad %> # <% end %> # @@ -69,7 +69,7 @@ module ActionView # +partial_name_counter+. In the case of the example above, the template would be fed +ad_counter+. # # The <tt>:as</tt> option may be used when rendering partials. - # + # # You can specify a partial to be rendered between elements via the <tt>:spacer_template</tt> option. # The following example will render <tt>advertiser/_ad_divider.html.erb</tt> between each ad partial: # |