This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
update_options!(other)
public
Make sets of strings from :only/:except options
# File actionpack/lib/action_controller/filters.rb, line 126
def update_options!(other)
if other
convert_only_and_except_options_to_sets_of_strings(other)
if other[:skip]
convert_only_and_except_options_to_sets_of_strings(other[:skip])
end
end
options.update(other)
end