Tagged Questions
6
votes
2answers
638 views
Why is Rails before_filter called twice when the controller is subclassed?
I'm at Rails 2.3.5 and I have this problem:
class BaseController < ApplicationController
before_filter :foo, :only => [:index]
end
class ChildController < BaseController
before_filter ...
5
votes
2answers
659 views
Rails best practice for having same form on multiple pages
I am developing an Rails 2.3.1 Web site. Throughout the Web site, I need to have a form for creating Posts on various pages (Home page, Create Posts page, Post listing page, Comment listing page, etc. ...
4
votes
2answers
345 views
Action caching is not expiring correctly, even when I can see it's being called
I've got a sweeper that's supposed to expire a few action caches. Even though the debugger stops immediately before the call to expire_action, it's not actually expiring the action. Any idea what ...
3
votes
2answers
67 views
How to determine which view to render in a controller action
Okay, I have a few different of ideas of how I would achieve this, but thought I would ask here in case someone has a better solution.
I have a SessionsController that has a login view and a ...
3
votes
2answers
332 views
How to make Rails caches_page survive a capistrano deploy?
Is it possible to configure Rails so caches created with caches_page survive a Capistrano deploy? Ie, can I configure the cache to be saved into a shared directory rather than in the public directory?
...
2
votes
2answers
373 views
How can I access UrlWriter url/path generators from a model's class method?
I want to generate urls from a model's class method. I've done this before from an instance method by simply including ActionController::UrlWriter -- I tried including this in the instance definition ...
2
votes
3answers
523 views
class variables and module inclusion, specifically in ActionController
I want to have some kind of single list that is initialized in a seperate module, then can be included in a controller and modified at the controller-class level, and accessed at the ...
1
vote
0answers
29 views
NameError for ActionMailer within ActionController
I'm on Rails 3.0, and I pretty much followed the steps on the API to define a mailer by doing
rails generate mailer Notifier
Within my controller, I call Notifier.mytemplate(...)
When I go to the ...
1
vote
2answers
99 views
Retrieve a record's created_by field to a passed in month and year in Rails3?
Im trying to make a side bar for my blog archive that lists out all the months for my blog entries, so when you click on a link such as "June 2007" all the blogs from June 07 are loaded.
Heres my ...
0
votes
3answers
70 views
How to retrieve the controller class from within a view/helper in Rails 3?
I know about controller_name returning a string containing the controller's name but how can I retrieve the controller class (or object) from within a helper?
EDIT: The solution should also work when ...
0
votes
1answer
610 views
How do I include Responder in ActionController::Metal in Rails 3?
I'm working a Rails 3 controller that has a very specific, limited purpose, and all I need is for it to respond_to :json.
This screencast says my controller can inherit from ActionController::Metal, ...
0
votes
1answer
65 views
How can I programatically determine which methods have been declared as “helper” methods by a controller in Rails?
I'm writing a plugin that adds a method to controllers and declares it as a helper method. If it were done statically (rather than through the plugin), it would look something like this:
# in ...
0
votes
1answer
752 views
Rspec redirect_to routes are failing expectations (or misparsed?), how come?
It seems my rspec route for :controller => 'phones', :action => 'edit' works...it should be 'phones/123/edit', and IS according to rspec tests and rake routes. But when I create a redirect_to ...