2
votes
Migrate from rails 2.1.1 to 2.2.2
There aren't any major changes in the way things are done. Here is the list of deprecations
Of …
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 …
5
votes
Rails Background task overhead
I would also be interested in a comprehensive comparison, but one thing I can say is that BackgroundRB is considered deprecated by its author. At EngineYard they are specifically recommending Back …
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 …
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
Rails - Escaping HTML using the h() AND excluding specific tags.
Preventing XSS attacks is serious business, follow hrnt's and consider that there is probably an order of magnitude more exploits than that possible due to obscure browser quirks. Although html_es …
0
votes
Sanitize Markdown in Rails?
The other answers here are good, but let me make a few suggestions on sanitization. Rails built-in sanitizer is decent, but it doesn't guarantee well-formedness which tends to be half the problem. …
0
votes
Any clever workaround to avoid having to type the h method everywhere?
The Rails 3 approach is definitely the best on the view side because it explicitly keeps track of the safety of each string, which is ultimately what you need (taint mode) for a robust solution. …
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 …
0
votes
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 …
