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 …
