class NVD::JSONFeeds::GzFeedURI

Represents a URI to a `.json.gz` 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 [GzFeedFile]

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