Method: GoodData::Process#download
- Defined in:
- lib/gooddata/models/process.rb
#download ⇒ IO
Downloads the process from S3 in a zipped form.
279 280 281 282 283 |
# File 'lib/gooddata/models/process.rb', line 279 def download link = links['source'] client.connection.refresh_token client.get(link, process: false) { |_, _, result| RestClient.get(result.to_hash['location'].first) } end |