Class: Oddb2xml::MedregbmDownloader
- Inherits:
-
Downloader
- Object
- Downloader
- Oddb2xml::MedregbmDownloader
- Includes:
- DownloadMethod
- Defined in:
- lib/oddb2xml/downloader.rb
Instance Attribute Summary
Attributes inherited from Downloader
#agent, #file2save, #type, #url
Instance Method Summary collapse
- #download ⇒ Object
-
#initialize(type = :company) ⇒ MedregbmDownloader
constructor
A new instance of MedregbmDownloader.
Methods inherited from Downloader
Constructor Details
#initialize(type = :company) ⇒ MedregbmDownloader
Returns a new instance of MedregbmDownloader.
213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/oddb2xml/downloader.rb', line 213 def initialize(type = :company) @type = type action = case @type when :company # betrieb "CreateExcelListBetriebs" when :person # medizinalperson "CreateExcelListMedizinalPersons" else "" end url = "https://www.medregbm.admin.ch/Publikation/#{action}" super({}, url) end |
Instance Method Details
#download ⇒ Object
227 228 229 230 231 232 233 |
# File 'lib/oddb2xml/downloader.rb', line 227 def download file = "medregbm_#{@type}.txt" download_as(file, "w+:iso-8859-1:utf-8") report_download(@url, file) FileUtils.rm_f(file, verbose: true) # we need it only in the download file end |