class NVD::JSONFeeds::ZipFeedURI

Represents a URI to a `.json.zip` feed file.

Public Instance Methods

download(dest) click to toggle source

Downloads the compressed feed file.

@param [String] dest

The destination file or directory.

@return [ZipFeedFile]

Calls superclass method NVD::JSONFeeds::FeedURI#download
# File lib/nvd/json_feeds/zip_feed_uri.rb, line 19
def download(dest)
  ZipFeedFile.new(super(dest))
end