Controller for viewing a file’s blame

Methods
S
Included Modules
Instance Public methods
show()
# File app/controllers/blob_controller.rb, line 12
def show
  if @tree.is_blob?
    send_data(
      @tree.data,
      type: @tree.mime_type,
      disposition: 'inline',
      filename: @tree.name
    )
  else
    not_found!
  end
end