6
votes
1answer
298 views

Homebrew updated zlib and broke everything

So a brew update updated zlib from 1.2.7 to 1.2.8. Yay. Later I noticed there was an issue running bundle. I was getting a LoadError for zlib. Error loading RubyGems plugin ...
0
votes
2answers
146 views

Ruby zlib deflate and inflate not working as intended

I have been trying to get a (relatively) simple compression and decompression functionality working on any sort of object (images, csv files, docs etc) and have had no success whatsoever. I have ...
7
votes
3answers
1k views

Can't install rubygems with ruby 2.0.0

I've been trying to install rubygems for hours, but it keeps failing. The error is: Installing rubygems-2.0.3 for ...
-1
votes
1answer
86 views

Zlib inflate error

I am trying to save compressed strings to a file and load them later for use in the game. I kept getting "in 'finish': buffer error" errors when loading the data back up for use. I came up with this: ...
0
votes
1answer
81 views

Compress a complete directory in Ruby with zlib?

This is the code I'm trying. require 'zlib' Dir.glob('*.*').each do |file| Zlib::GzipWriter.open('output.gz') do |gz| gz.mtime = File.mtime(file) gz.orig_name = File.basename(file) ...
0
votes
0answers
23 views

Ruby: Lower Level Zlib

I was considering porting a .NET application that uses Zlib to Ruby. However I hit a snag. The implementation of the application (in .NET) has custom changes to the compression length (by adding a 13) ...
3
votes
3answers
279 views

Read with Ruby a Zlib string created with Node.js

Some pieces of our app are written in Ruby and others are written using node.js. We share data among them using a redis store that stores zlib chunks. We write to it with the following code using ...
1
vote
3answers
102 views

How to create a consistent hashstring of a ruby array?

I wonder how it is possible to create a consistent hash of a ruby array full of strings. The requirements are that the hash is always the same if the array contains the same values, independent of ...
1
vote
1answer
376 views

not in gzip format (Zlib::GzipFile::Error) - while decompressing the gzip file in Ruby

I am trying to decompress a file with following Ruby code. File.open("file_compressed.gz") do |compressed| File.open("file_decomp","w") do |decompressed| gz = Zlib::GzipReader.new(compressed) ...
0
votes
1answer
53 views

can't compile ruby 1.8.6 with zlib on smartos64

I'm trying install ruby 1.8.6 with zlib on smartos, the ruby compiles normal, but when I run ruby extraconf.rb that lives on ext/zlib folder the console shows: ...
4
votes
1answer
2k views

RVM pkg install checksum error

root@li417-132:~# rvm pkg install zlib Fetching zlib-1.2.7.tar.gz to /usr/local/rvm/archives There is no checksum for 'http://prdownloads.sourceforge.net/libpng/zlib-1.2.7.tar.gz' or ...
1
vote
1answer
1k views

Using gzip compression in Sinatra with Ruby

Note: I had another similar question about how to GZIP data using Ruby's zlib which technically was answered and I didn't feel I could start evolving the question since it had been answered so ...
-1
votes
1answer
248 views

How do i GZIP static resources using zlib?

Edit: I'm using Ruby with Sinatra. UPDATE: here is the code I'm using which doesn't work... get '/' do session[:time] = Time.now z = Zlib::Deflate.new(6, 31) ...
0
votes
1answer
1k views

What might explain an “invalid stored block lengths” error?

I am running a Rails (3.2.3) application with Ruby 1.9.3p194 on the basic Ubuntu lucid32 image in a Vagrant virtual box. The virtual box is running on Leopard, for what it's worth. I'm trying to use ...
1
vote
1answer
963 views

Not able to run gem command and build ruby with zlib support

I didn't know that installing ruby is such a pain After lot of trouble with curl certificate, I installed the rvm using the methods mentioned in the rvm site also with lot of help from stackoverflow ...
0
votes
1answer
122 views

Ruby Zlib “Symbol Not Found”

Issue Zlib cannot be included in any fo my scripts. If it is included, I get this error LoadError: dlsym(0x7f859bc94d90, Init_Zlib): symbol not found - ...
1
vote
1answer
330 views

rvm, zlib and ruby not working even after following instructions

I have researched this issue yet the answers found (including here on SOF) have not resolved it Ubuntu noob rails install fails on zlib cannot load such file -- zlib even after using rvm pkg install ...
1
vote
1answer
767 views

Zlib decompression throws header error - Ruby

I need help on decompressing chunk data from a stream api. I am connecting to Gnip stream api which returns json output using gzip compression. When I try to decompress the output data, it throws me ...
0
votes
2answers
210 views

PHP/Ruby Zlib Equivalence

I'm wondering what the PHP equivalent to this code is: require "zlib" foo = Zlib::Deflate.new() bar = "bar" puts foo.deflate(bar, Zlib::SYNC_FLUSH).unpack('H*') puts foo.deflate(bar, ...
0
votes
2answers
1k views

How do I inflate and read zip files using zlib?

How do you unzip a file, or read the contents of a zip file in order to select what to extract? The .pencast is zip compressed, so I can use the following in bash: unzip -j *.pencast "*.aac" But ...
0
votes
1answer
222 views

How do I use zlib to compress a File stream on the fly in ruby

I'd like to wrap a normal file in such a way that reading from it (in chunks) yields compressed data. currently: f = File.open(name) while(string = f.read(@chunk_size) { <do something> } ...
3
votes
1answer
1k views

Zlib keeps causing problems in new ubuntu server/rvm/gemset

I've just installed RVM on a new ubuntu 10.04 LTS server and one ruby, 1.9.2-p180. I've made a new gemset in my project folder, which has a Gemfile. I realised that in order to install the gems in ...
1
vote
1answer
489 views

Ruby on Rails: Decompression (Zlib::Deflate) doesn't work after certain amount of time

I have a need to compress large chunk of text before saving it to the database and decompress it back once client requests it. The method I am using right now seems to work fine when I insert new ...
1
vote
1answer
688 views

Rails: how to unzip a compressed xml request body?

I have a rails 3 site which gets xml requests (incluing file submissions) from an iphone app. The iphone app compresses the body of its xml requests, which come through to my controller like this ...
3
votes
0answers
375 views

`require': File not found zlib.so

I've installed ruby and ruby gems on an Arm architecture. On Arm dns323, the ruby binary works, but when I run the gem binary, I have an error: /opt/lib/ruby/1.9.1/rubygems/spec_fetcher.rb:1:in ...
4
votes
2answers
2k views

Installing libxml-ruby gem fails because zlib is missing

When trying to install the ruby gem libxml-ruby on my windows computer I get the following error message D:/.../bin/ruby.exe extconf.rb checking for socket() in -lsocket... no checking for ...
2
votes
1answer
542 views

Can't run “gem list”!

I get an error when i run: vagrant@vagrantup:~$ sudo gem list ERROR: Loading command: list (LoadError) no such file to load -- zlib ERROR: While executing gem ... (NameError) uninitialized ...
0
votes
1answer
720 views

“Zlib::GzipFile::CRCError crc error” when install gem packages

[root@blanee local_cache]# gem install dm-core-0.9.11.gem ERROR: While executing gem ... (Zlib::GzipFile::CRCError) invalid compressed data -- crc error [root@blanee local_cache]# gem install ...
1
vote
1answer
1k views

Ruby zlib deflate massive data

I'm trying to use Zlib::Deflate.deflate on a massive file (4 gigs). There are obvious problems with doing that, the first of which being that I can't load the entire file into memory all at once. ...
50
votes
8answers
26k views

RVM Ruby 1.9.1 install can't locate zlib but its runtime and dev library are there

Trying to get Ruby 1.9.1 up and running with RVM on a fresh install (fedora). After doing rvm install 1.9.1, the rubygems error logs show that zlib can't be located no such file to load -- zlib ...
1
vote
0answers
1k views

missing rails gem: zlib not found on snow leopard, but shows in ports

Trying to start development on a snow leopard machine. Have reinstalled and built ruby and ruby on rails via hivelogic post Prior to sorting out my own rails app, I created a test app, and all the ...
22
votes
7answers
15k views

How to decompress Gzip string in ruby?

Zlib::GzipReader can take "an IO, or -IO-lie, object." as it's input, as stated in docs. Zlib::GzipReader.open('hoge.gz') {|gz| print gz.read } File.open('hoge.gz') do |f| gz = ...
2
votes
3answers
1k views

has anyone tried installing ruby & rubygems from source on ubuntu (preferably unbuntu 9)?

The Ruby on Rails website recommends installing Ruby from source under Linux. I encountered a number of C library problems building ruby from source on a clean install of Unbuntu 9. All the ...
0
votes
1answer
186 views

Error compiling Ruby 1.8.7 Build 160

I was compiling Ruby 1.8.7's latest version yesterday (since the latest version has no binaries out yet). I followed the instructions in the readme file, but then, when I installed ruby gems and ...
120
votes
13answers
55k views

Ubuntu noob rails install fails on zlib

I've just moved over to Ubuntu 8.10 as my dev box; it's my first serious foray into Linux as a daily-use OS, and I'm having a hard time getting Rails going. I have followed a number of tutorials ...