Search Results

0
votes

RoR: FasterCSV to hash

I don't have the code in front of me, but I believe row.to_hash does that (where row is the FasterCSV::Row of the current record) row.headers …
2
votes

Do you leave parentheses in or out in Ruby?

I guess I do both, but I definitely keep them in if it adds to readability and avoids statements that look ambiguous. …
2
votes

Has anyone successfully connected to MySQL from Ruby?

Sounds like you've run in to a MySQL quirk. Some time around version 5.0 they changed the format of connect passwords. It's an easy fix, though: …
0
votes

Ruby CSV ‘illegal quoting’ even though quotes are escaped

I think the regular CSV class would accept that, incidentally. …
6
votes

Mongrel vs. WEBrick

Mongrel is considerably more efficient and stable. …
-1
votes

RubyTorrent Issue

I think it expects a filename. Could it be as simple as needing to require 'open-uri' ? …
0
votes

How do you send raw headers in ruby

I'm not sure how to answer this directly without learning more about how you're generating the page, but I might suggest you look into some of the lightweight non-Rails web frameworks for Ruby. The …
5
votes

Strange behavior: Hash’s keys cancel dynamic method definition

Ruby's Hash has a special case for using strings as a hash key -- it makes an internal copy of the string. Basically it's to protect you from using a string (object) as a key and then alte …
0
votes

SQLite3 helper?

SQLite Database Browser runs on OS-X, though it's a bit flaky. Honestly the command line sqlite3 app is pretty solid for w …