1
vote
What’s the cleanest way to override ActiveRecord’s find for both models and collections?
First of all, make sure you know Ruby's method call inheritance structure well, as without thi …
0
votes
1
vote
How do you deal with the conflict between ActiveSupport::JSON and the JSON gem?
Update This fix is only applicable to Rails < 2.3. As Giles mentions below, they fixed this in 2.3 internally using much the same technique. But beware the json gem's earl …
5
votes
how to parse multivalued field from URL query in Rails
You can use the default Ruby CGI module to parse the query string in a Rails controller like so:
params = CGI.parse(request.query_string)
This will give you what y …
3
votes
Run a single migration file
Assuming fairly recent version of Rails you can always run:
rake db:migrate:up VERSION=20090408054532
Where version is the timestamp in the filename of the migrati …
2
votes
Rails Active Record find(:all, :order => ) issue.
Make sure to check the schema at the database level directly. I've gotten burned by this before, where, for example, a migration was initially written to create a :datetime column, and I ran it lo …
3
votes
Pluses and minuses of using Factories in a Rails test suite?
Oleg's answer is great, but let me offer the perspective of someone who is using both.
Fixtures have sort of been the whipping boy of the Rails community for a while. Everyone understands …
5
votes
Generate an HTTP response in Ruby
I would start with FakeWeb and see if that meets your needs. If it doesn't you can probably gut whatever you need out of t …
2
votes
3
votes
Is it possible to edit a Here document after creating it?
heredoc is just a syntax for generating a string. Therefore you can use all standard string methods. eg:
replaceddoc = myheredoc.gsub(/div/, 'replaced div')
…
0
votes
Validating a legacy table with ActiveRecord
I like zgchurch's response as a starting point.
What I would add is that threading is definitely not going to help here, especially because Ruby uses green threads (at least in 1.8.x), so t …
0
votes
Ruby on Rails and XSS prevention.
The Rails sanitize method is pretty good, but it doesn't guarantee well-formedness, and it's quite likely to be attacked due to the install base. Better practice is to use either html5lib (truly t …
1
vote
rails form_remote_tag and onselect submit…
The problem you're having is that Rails implements remote_form_for as an inline Ajax method in the onsubmit attribute of the form. The problem is that the submit event only fires when a user physi …
2
votes
Access to current_user from within a model in Ruby on Rails
I'd say your instincts to keep current_user out of the model are correct.
Like Daniel I'm all for skinny controllers and fat models, but there is also a clear division of responsibilities. …
2
votes
book about Rails recommendation
Okay this is probably too easy, but I'm a big fan of Obie Fernandez's The Rails Way.
I've been a core contributor to Rails fo …
