Search Results

5
votes

Is there anyway to run ruby on rails applications on a windows box?

Windows is not the usual place to deploy production Rails apps, but there are people who do it. Mongrel was originally written to give better deployment options for Windows. As it turned out the UN …
2
votes

Frequent SystemExit in Ruby when making HTTP calls

I used to get these all the time on Apache1/fastcgi. I think it's caused by fastcgi hanging up before Ruby is done. Switching to mongrel is a good first step, but there's more to do. It's …
0
votes

Options for distribution of an offline Ruby on Rails application

The way most people ship ruby programs, including Rails webapps, as a standalone exe is via rubyscript2exe. They describe how to package a Rails application at …
1
vote

ActiveRecord has_n association

My first instinct would be to use a join table, but if that's not desirable User.movie[1-5]_id columns would fit the bill. (I think movie1_id fits better with Rails conven …
4
votes

How do you test code that is not a model or controller

You can put them in your units directory without any complications. My Library: [ cpm juno ~/apps/feedback ] cat lib/my_library.rb class MyLib def look_at_me puts "I D …
0
votes

‘Back’ browser action in Ruby on Rails

You can use link_to("Hello", :back) to generate <a href="javascript:history.back()">Hello</a>. …
3
votes

Redirecting to a 500 page when an AJAX call fails in Ruby on Rails

You can use respond_to inside a controller's rescue_action or rescue_action_in_public method. Consider the following controller: class DefaultController < ApplicationController …
1
vote

How do I add custom options to ActionController::Routing::Routes map.resources ?

Not quite what you're looking for, but you could save some typing with Object#with_options: map.w …
1
vote

debugging a rails controller making too many queries

Are you running in development or production mode? SHOW FIELDS FROM foo is done by your model, as you noted, so it knows which accessor methods to generate. In develo …