Search Results

2
votes

Convert an array into an index hash in Ruby

I'm fairly certain that there isn't a one-shot clever way to construct this hash. My inclination would be to just be explicit and state what I'm doing: hash = {} array.each{|x| hash …
1
vote

How to consume JSON formatting with ruby’s ActiveResource?

Yeah, ActiveResource is currently a bit inflexible when it comes to its data formats. In principle, the idea is you could write yourself a custom format module (e.g. JsonWithRootForma …
0
votes

Rails dashboard design: one controller action per div

I'm not aware of any special Rails tricks for achieving this without using AJAX in the way you've outlined. The simplest way to get the modularity you seek is to put those portions of contr …
3
votes

How do I easily parse a URL with parameters in a Rails test?

CGI::parse(querystring) will parse a querystring into a hash. Then, CGI::unescape(string) will undo any URL-encoding in the value. Alternatively, you can use …