I am trying to create a link to download a file from the file system. For this, I define the following in the "license_helper.rb" file:
def license_download_link(license, link_text = nil)
if link_text.blank?
link_text = image_tag("download_icon.png", :border => 0, :width => 32, :height =>32, :alt => 'Download License', :title => 'Download License')
end
licenseFileId = license.asset.serial_number
send_file '#{licenseFileId}license.xml', :type => "application/xml", :filename => "#{licenseFileId}license.xml"
#send_file ' "#{licenseFileId}license.xml" ', :disposition => 'inline'
#send_file("#{licenseFileId}license.xml", :type => :xml)
#link_to link_text, '#{"C:\\Entitlement\\trunk\\entitlement_site\\entitlement\\25license.xml"}'
end
My "view" just calls this helper class:
<td><%= license_download_link(license, ' ') %></td>
When I try to view the page, I get the following error message:
undefined method `send_file' for #<ActionView::Base:0x5fb3650>
As you can see, I tried a bunch of ways to call "send_file", but always get the same error message. Any help would be really appreciated, Thanks for your time, Regards, --- AJ