1
vote
3answers
342 views
Rails “render :text => proc” in 2.2.2 versus 2.3.2
I'm experiencing something that I can't explain with Rails 2.3.2. I've created a new app, with one controller and one action to try narrowing this down. My entire controller is as follows.
…
1
vote
Widget Data Across Multiple Controllers
Presumably, you have a single partial that displays this info. You can put the methods that fetch the data you need in ApplicationHelper or as class methods on whatever model(s) you're getting the …
0
votes
Widget Data Across Multiple Controllers
def load_sidebar
@posts = Post.find(:all)
end
You mentioned that you were displaying summary info. If you don't really want to load all of your posts into memory, you c …
2
votes
Non-working Rails link in Firefox
When really weird things like this happen, it's time to double-check the obvious.
Do you have JavaScript enabled in
Firefox?
Do you have NoScript, or
anything like it, instal …
2
votes
How can I format the value shown in a Rails edit field?
I prefer your first answer, with the formatting being done in the view. However, if you want to perform the formatting in the model, you can use wrapper methods for the getter and setter, and avoi …
3
votes
How do I convert a decimal to string value for dollars and cents in ruby?
If you're trying to format dollar values in a view, you should look at number_to_currency in ActionView::Helpers::NumberHelper.
>> bd = BigDecimal.new "5.75"
& …
4
votes
Text search options for a Web app?
Some previous discussion on this. I've personally used Ferret in production, Sphinx in almost-production, and Xapian to screw around with. Unless I absolutely required easy result text highlighti …
4
votes
Is it wrong to not implement all REST actions in Rails controller?
There is nothing wrong with implementing only those actions which you need. In Rails 2.3 you can be even more explicit in your routes as well.
map.resources :foo, :only => [:create, :destr …
9
votes
when to ditch active record?
It's more important to be pragmatic than to worry about maintaining "Rails purity." I love named scopes, associations, and all of the magic that goes with them. Of course, I prefer those to running …
3
votes
7
votes
how do I write that join query with ActiveRecord?
The assumption here is that you have something that looks like this:
class Band < ActiveRecord::Base
has_many :memberships
has_many :users, :through => :memberships
end
c …
