Class: Oddb2xml::EphaDownloader

Inherits:
Downloader show all
Includes:
DownloadMethod
Defined in:
lib/oddb2xml/downloader.rb

Instance Attribute Summary

Attributes inherited from Downloader

#agent, #type, #url

Instance Method Summary collapse

Methods inherited from Downloader

#init, #initialize, #report_download

Constructor Details

This class inherits a constructor from Oddb2xml::Downloader

Instance Method Details

#downloadObject



138
139
140
141
142
143
144
# File 'lib/oddb2xml/downloader.rb', line 138

def download
  @url ||= 'https://download.epha.ch/cleaned/matrix.csv'
  file = 'epha_interactions.csv'
  content = download_as(file, 'w+')
  FileUtils.rm_f(file, :verbose => false)
  content
end