zipline icon indicating copy to clipboard operation
zipline copied to clipboard

A gem that lets you stream a zip file from rails

Results 14 zipline issues
Sort by recently updated
recently updated
newest added

i get this error `Illegal or missing hexadecimal sequence in chunked-encoding` any ideas?

I'm using Puma with Nginx in front of it, and HAProxy as a load balancer. Pretty standard setup, and zipline works fine most of the time, but lately I've been...

We stumbled upon a tricky bug where no matter what, the ZIP produced by zipline was corrupt. Tracking it down was quite difficult. It seems that the download of one...

I have been looking around for solutions but couldn't find any. I hope it's OK to ask here. I have been getting this error message while trying to implement zipline:...

### What is this commit? Allows for options to be passed in (if required). ### Why do we all need it? Sometimes we may need to pass in options in...

``` page_action :download, method: [:get] do sub_camps = SubCampaign.where(campaign_id: params[:campaign_id]) responses = Response.where('sub_campaign_id IN (?)',sub_camps.ids) files = responses.map{|resp| if resp.response_video.url.present? [resp.response_video.url, "#{resp.sub_campaign.title.gsub(/[^0-9A-Za-z _]/, '')}/video/#{resp.response_video_identifier}"] elsif resp.response_audio.url.present? [resp.response_audio.url, "#{resp.sub_campaign.title.gsub(/[^0-9A-Za-z _]/, '')}/audio/#{resp.response_audio_identifier}"]...

* Buffer#to_ary now calls "each" without a block when the body doesn't have a 'to_ary' method * fixes https://github.com/fringd/zipline/issues/91

I am using Grape for some of my APIs. I am trying to implement an export API. Now I am getting an error like: ```undefined method 'zipline' for # in...

this is so that we can have specific errors one can recover from. The thing is that there is an abstraction needed where we could put the exceptions which mean...

Hi folks, excited to see an update published! Do you have a change log of what's included in 2.0? Any breaking changes? Thanks so much.