Merge pull request #8363 from Takehiro-Adachi/add-string-options-examples-to-currentpage-method

Added examples to current_page? method [ci skip]
This commit is contained in:
Carlos Antonio da Silva 2012-11-29 03:04:31 -08:00
commit 5e086cc15a
1 changed files with 9 additions and 3 deletions

View File

@ -498,7 +498,7 @@ module ActionView
# True if the current request URI was generated by the given +options+.
#
# ==== Examples
# Let's say we're in the <tt>/shop/checkout?order=desc</tt> action.
# Let's say we're in the <tt>http://www.example.com/shop/checkout?order=desc</tt> action.
#
# current_page?(action: 'process')
# # => false
@ -515,7 +515,13 @@ module ActionView
# current_page?(controller: 'library', action: 'checkout')
# # => false
#
# Let's say we're in the <tt>/shop/checkout?order=desc&page=1</tt> action.
# current_page?('http://www.example.com/shop/checkout')
# # => true
#
# current_page?('/shop/checkout')
# # => true
#
# Let's say we're in the <tt>http://www.example.com/shop/checkout?order=desc&page=1</tt> action.
#
# current_page?(action: 'process')
# # => false
@ -538,7 +544,7 @@ module ActionView
# current_page?(controller: 'library', action: 'checkout')
# # => false
#
# Let's say we're in the <tt>/products</tt> action with method POST in case of invalid product.
# Let's say we're in the <tt>http://www.example.com/products</tt> action with method POST in case of invalid product.
#
# current_page?(controller: 'product', action: 'index')
# # => false