I’m working on upgrading a plugin for Rails 3.0.5, specifically, this commit. Essentially, ActiveRecord requires a proc instead of a string for condition interpolation.
In general, I think the best way to handle something like this is with a respond_to? call, but in this case all of the methods that were changed are private. What’s the best practice for checking the rails version so that the plugin can give new versions a proc, and old versions a string? I’d rather not rely on checking that private methods exist, since that is likely to break in the future.
1 Answer