1
vote
3answers
356 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 …
0
votes
rails - link_to_remote versus render
Something like this should do what you want.
render :update do |page| page << 'window.location.reload()' end
…
1
vote
Rails friendly url routing with open id
You could handle that second route with something like this (replace the action name with something real).
map.connect 'identity/:id', :controller => "identity",
…
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
In Rails, do you need to use form_authenticity_token if you’re already checking if a user is logged in?
Being logged in would make an XSRF attack worse, because then it could actually damage real data. Check these out as a starting point.
…
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 …
2
votes
Errors on non model fields in rails
You can add your own errors manually to your model object like this.
@user_batch.errors.add_to_base("Foo")
…
0
votes
Rails: Is it bad to have an irreversible migration?
In a production scenario, you should always make the effort to write and test a reversible migration in the eventuality that you go through it in production, then discover a bug whic …
0
votes
ActiveRecord::StatementInvalid: Could not find table ‘tablename’
As Sarah Mei already pointed out in the comments, you are manually checking for "author" not "article."
However, something else might be off here as well. Did you intentionally set the tab …
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
before_filter and respond_to formats
You'll need to roll your own a bit. Try this as a starting point.
before_filter :login_required, :except => [:index]
before_filter(:only => :index) do |controller|
logi …
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 …
0
votes
Contest ranking question - how to rank entries in multiple categories?
It depends on what you're trying to accomplish. However, it seems to me that the social media score is pointless. The net result is that someone bothered to watch and/or rate the video on YouTube. …
