Class: Oddb2xml::FirstbaseDownloader
- Inherits:
-
Downloader
- Object
- Downloader
- Oddb2xml::FirstbaseDownloader
- Includes:
- DownloadMethod
- Defined in:
- lib/oddb2xml/downloader.rb
Constant Summary collapse
- BASE_URL =
"https://id.gs1.ch/01/07612345000961"
Instance Attribute Summary
Attributes inherited from Downloader
#agent, #file2save, #type, #url
Instance Method Summary collapse
- #download ⇒ Object
-
#initialize(type = :orphan, options = {}) ⇒ FirstbaseDownloader
constructor
A new instance of FirstbaseDownloader.
Methods inherited from Downloader
Constructor Details
#initialize(type = :orphan, options = {}) ⇒ FirstbaseDownloader
Returns a new instance of FirstbaseDownloader.
347 348 349 |
# File 'lib/oddb2xml/downloader.rb', line 347 def initialize(type = :orphan, = {}) @url = BASE_URL end |
Instance Method Details
#download ⇒ Object
351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'lib/oddb2xml/downloader.rb', line 351 def download @file2save = File.join(DOWNLOADS, "firstbase.csv") report_download(@url, @file2save) begin download_as(@file2save, "w+") return File.(@file2save) rescue Timeout::Error, Errno::ETIMEDOUT retrievable? ? retry : raise ensure Oddb2xml.download_finished(@file2save, false) end File.(@file2save) end |