2
votes
2answers
151 views
Returning from ruby blocks outside of their original scope
I wanted to make something that looks like this:
def make_wrapped_block(&block)
puts "take_block:before"
func = lambda do
puts "Before calling make_wrapped_block's passe …
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 …
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 …
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
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 …
