3
votes
4answers
166 views
how do I deploy multiple branches to different directories via git push?
In production, I maintain two sites - beta and release. Each points to a different directory via a soft link (e.g.)
beta_public_html -> /home/scott/myapp/trunk/public
public_html …
1
vote
Learning Ruby on Rails
My suggestion is just to start - pick a small project that you would generally use to learn an MVC-style language (i.e. something with a database, maybe some basic workflow), and then as you need t …
1
vote
Rails state of the art for spam prevention
I also recommend ReCAPTCHA, both because it's a highly-reliable service you don't have to manage, and because it serves two common goods - the OCR tasks described by the ReCAPTCHA team, and the pro …
0
votes
What is your preferred way to produce charts in a Ruby on Rails web application?
FWIW, I'm not a fan of using Google Charts when fit & finish is important. I find that the variables for sizing, in particular, are unpredictable - the chart does its own thing.
I haven …
0
votes
Customising the generic Rails error message
It's not clear if you're trying to do inline error messaging or new page error messaging, but if you want to improve the text around inline error messaging, …
1
vote
Who’s using Ruby on Rails in production?
yellowpages.com (mentioned above) is probably the largest site of any of these in terms of traffic and page views/sec. They've done a nice job.
…
3
votes
Apache/Rails/Passenger Displaying Site Index?
Two questions:
1) Is Rails running at all on the server? Passenger should start Rails automatically on first request - if you do a ps, do you see it running?
2) Which directory ar …
0
votes
Rails unit testing doesn’t load fixtures
BTW, I'm stuck in the exact same spot. I'm trying to run an integration test, that test calls fixtures :all, and the fixtures never load. I looked in environment.rb and …
