I know there is another thread on this subject but I still face this problem even after using all solutions. Is there any other way to generate zip files? Can i use Ubuntu system commands?

I did

 gem install rubyzip

I have

require 'rubygems'
require 'zip/zip'

in my controller

But i still get the same error - no such file to load -- zip/zip I tried with both ruby 1.8.7 and ruby 1.9.2 with rails 3.0.5 on Ubuntu

Could you please help me? Thanks.

link|improve this question
Did you ever find a solution? I am in the same situation. Thanks – Erik J May 23 '11 at 19:28
Nope i am still in search of the solution, it works in irb shell but not with rails. – coredump May 31 '11 at 22:46
Make sure you have gem 'rubyzip' in your Gemfile. Also, it depends what functionality of rubyzip you're using, but you may need to use require 'zip/zipfilesystem' in addition to what you have above. – Erik J Jun 1 '11 at 18:27
gem 'rubyzip', :require => 'zip/zip' in Gemfile worked :) Finally! Thanks Erik – coredump Jun 6 '11 at 23:41
feedback

2 Answers

up vote 7 down vote accepted

After spending lot of time, i finally figured out the missing part Add this to your Gemfile

gem 'rubyzip', :require => 'zip/zip'

Just adding gen 'rubyzip did not work for me.

link|improve this answer
feedback

For anyone else who has problems with rubyzip and comes across this thread: remember that you can always shell out to an external command-line zip utility. There are a number of free command-line utilities which you can find through Google. Once you install your command-line zip program of choice and make sure it is on the system path, just use backticks to drive it from within Ruby. Of course, this won't work for web applications which are running on Heroku, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.