Class: NVD::JSONFeeds::GzFeedURI
- Defined in:
- lib/nvd/json_feeds/gz_feed_uri.rb
Overview
Represents a URI to a .json.gz
feed file.
Constant Summary
Constants inherited from FeedURI
FeedURI::BASE_URI, FeedURI::SCHEMA_VERSION
Instance Attribute Summary
Attributes inherited from FeedURI
Instance Method Summary collapse
-
#download(dest) ⇒ GzFeedFile
Downloads the compressed feed file.
Methods inherited from FeedURI
#get, #initialize, #inspect, #to_s, #to_uri
Constructor Details
This class inherits a constructor from NVD::JSONFeeds::FeedURI
Instance Method Details
#download(dest) ⇒ GzFeedFile
Downloads the compressed feed file.
19 20 21 |
# File 'lib/nvd/json_feeds/gz_feed_uri.rb', line 19 def download(dest) GzFeedFile.new(super(dest)) end |