Hey Darin, I think, perhaps, you're confused about what script/
runner's actually execute. It's not the same as an incomming http
request to your app. So script/runner "Request.sendit" has nothing to
do with requesting /requests/sendit in a browser.
I think most often people use runners to execute class methods in
their models. For example, if you have this model:
class Request < ActiveRecord::Base
def self.my_class_method
# some code to execute
end
end
could be executed with a runner like: script/runner
"Request.my_class_method"
Hope that helps!
Javan