Search Results

2
votes
3answers
278 views

Viewing Rails model page works on first view but not subsequent views

This is using Rails 2.2.2 I have a model that uses the acts_as_flaggable plugin, and on the page I use to display an instance of the model, I list any flags that the model has. When …
1
vote
1answer
43 views

Rails routing is being wonky with IE

Wanting to play with jQuery, Orbited, and FasterCSV, I made a Rails chat application. You can browse to a URL and there is a chat window that is similar to IRC. You can also export the con …
0
votes

How can I cache a calculated column in rails?

I've found that sometimes there is good reason to de-normalize information in your database. I have something similar in an app that I am working on and I just re-calculate that field anytime the c …
1
vote

Friendly Form Validations (Rails)

Just to add to the above, I use the Ruby URI module to parse URLs for validity. http://www.ruby-doc. …
2
votes

Recurring billing with Rails and ActiveMerchant: Best practices, pitfalls, gotchas?

Peepcode has a PDF for sale(70 pages) that details various aspects of payment processing and industry practices for this. It may be worth checking out: …
0
votes

Ruby on Rails - Capistrano and SVN on Windows. Setup help

I'm not a Windows person, but my understanding is that in Capistrano's normal state, it executes all of its commands on the server. That is why it needs to be able to pull the code via SVN from you …
0
votes

size limit of a mysql query ruby/mysql

I'm definitely not a MySQL expert, but in my experience I have found that using sub-SELECTs can be the source of some performance troubles. I try to avoid using them, but it isn't always p …
3
votes

RSS feed from MySQL table using either Ruby or Rails or Gems

Depending on what I was trying to do, I would probably just go for a simple Ruby script. I would use ActiveRecord …
0
votes

Determine if script/server is being started

There is probably a better way to do this, but since I am not aware of one, I would probably alter script/server to set an environment variable of some kind. Then I would have my initialize …