mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Changed returning with tap on guides
This commit is contained in:
committed by
Xavier Noria
parent
37d82f2ca0
commit
fd589db863
@@ -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
|
||||
|
||||
@@ -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.*(\\|\/)/, ''
|
||||
|
||||
Reference in New Issue
Block a user