instance method
send_file
Ruby on Rails 3.2.22.5
Since v3.0.20Signature
send_file(path, options={})
No documentation comment.
Parameters
-
pathreq -
optionsopt = {}
Source
# File actionpack/lib/action_controller/metal/instrumentation.rb, line 45
def send_file(path, options={})
ActiveSupport::Notifications.instrument("send_file.action_controller",
options.merge(:path => path)) do
super
end
end
Defined in actionpack/lib/action_controller/metal/instrumentation.rb line 45
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::Instrumentation