Changed returning with tap on guides

This commit is contained in:
Santiago Pastorino
2010-07-25 20:59:18 -03:00
committed by Xavier Noria
parent 37d82f2ca0
commit fd589db863
2 changed files with 2 additions and 2 deletions

View File

@@ -1274,7 +1274,7 @@ class YaffleMigrationGenerator < Rails::Generator::NamedBase
end
def yaffle_local_assigns
returning(assigns = {}) do
{}.tap do |assigns|
assigns[:migration_action] = "add"
assigns[:class_name] = "add_yaffle_fields_to_#{custom_file_name}"
assigns[:table_name] = custom_file_name

View File

@@ -286,7 +286,7 @@ When filtering user input file names, _(highlight)don't try to remove malicious
<ruby>
def sanitize_filename(filename)
returning filename.strip do |name|
filename.strip.tap do |name|
# NOTE: File.basename doesn't work right with Windows paths on Unix
# get only the filename, not the whole path
name.sub! /\A.*(\\|\/)/, ''