Module: Down::Http::DownloadedFile

Defined in:
lib/down/http.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#headersObject

Returns the value of attribute headers.



140
141
142
# File 'lib/down/http.rb', line 140

def headers
  @headers
end

#urlObject

Returns the value of attribute url.



140
141
142
# File 'lib/down/http.rb', line 140

def url
  @url
end

Instance Method Details

#charsetObject



150
151
152
# File 'lib/down/http.rb', line 150

def charset
  content_type_header.charset
end

#content_typeObject



146
147
148
# File 'lib/down/http.rb', line 146

def content_type
  content_type_header.mime_type
end

#original_filenameObject



142
143
144
# File 'lib/down/http.rb', line 142

def original_filename
  filename_from_content_disposition || filename_from_url
end