Tagged Questions
8
votes
5answers
5k views
How do I configure the hostname of a Rails app?
I'm working on a fairly traditional forgot password email - I want to email the user a password change token embedded in a link that they can click on in order to change their password. I'm emailing ...
6
votes
2answers
639 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
1answer
120 views
How to prevent force_ssl from destroying params in redirect?
I have the following route:
resources :widgets do
resources :orders
end
so that a request, e.g. to /widgets/1/orders/new goes to OrderController, which can access params[:widget_id] to know which ...
4
votes
1answer
513 views
Rails 3: Proper way to Delete resource using respond_with
I'm trying to DRY up a controller by incorporating respond_with. When I do, following some instructions in a Railscast, I get things mostly working. The problem lies in the redirect after deleting a ...
4
votes
1answer
736 views
Rails ActionController: Difference between request.remote_ip and request.remote_addr
In the ActionController source, local requests are defined as follows:
def local_request? #:doc:
request.remote_addr == LOCALHOST && request.remote_ip == LOCALHOST
end
In my ...
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
129 views
list and create on one page rails 3
I want to make a dashboard page with on top a create action (form) and underneath it a list action... (to display all the questions that have been made) I was wondering what is the best way to do ...
3
votes
2answers
919 views
How to set config.action_controller.default_url_options = {:host = '#''} on per environment basis
Right now I'm using this which works for the development host, but I have to manually change the {:host => ""} code when I move to production.
post.rb
def share_all
url = ...
3
votes
1answer
620 views
SqlSessionStore in Rails 3
I am migrating an existing application from Rails 2 to Rails 3. In the old environment file, SqlSessionStore was set up with:
...
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
1answer
408 views
after_filter for exceptions
Is there something similar to an after_filter that still runs if the action raises an exception?
I'm using an external logger (since I'm on Heroku); the response headers are filtered and logged in ...
3
votes
2answers
333 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?
...
3
votes
1answer
289 views
Getting around dots in “pretty urls”
In my routes.rb I've got:
map.connect ':name',
:controller => 'my_classes',
:action => 'show'
And that works perfectly, so a url like this sends params like so:
...
3
votes
1answer
1k views
Transaction Action with Ruby On Rails
I have a complex action inside controller that performs several update queries to the database.
How can I make this action acts like transaction without any structural refactoring?
2
votes
0answers
975 views
Working with and Testing Rails ActionController's respond_with
Apologies in advance for the verbosity of this question. If you bear with me I think you'll find it's actually quite simple...just hard for me to explain given my limited Rails domain knowledge.
...
2
votes
3answers
1k views
Rails 3: Get current namespace?
using a method :layout_for_namespace I set my app's layout depending on whether I am in frontend or backend, as the backend is using an namespace "admin".
I could not find a pretty way to find out ...
2
votes
1answer
341 views
FInding out which before_filters are already set in Rails 3
I have a DSL for controller configuration. The underlying functionality relies on before_filters. To prevent setting the before_filter more than once, I really need to find out whether a ...
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
524 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 ...
2
votes
1answer
264 views
How rails render works in controller? Why something it doesn't use layout?
I tried to write render in an action, but layout behavior is different, why?
def show
# assuming we have a partial in app/views/shared/_panel_show.html.erb
#render "shared/_panel_show" # have ...
2
votes
3answers
349 views
Rails ActionController Execute Same Code for Every Action
To the rails experts out there I was wondering where/how you would execute the same code for every action in your web application? If you can point me to an article or provide a short code snippet I ...
1
vote
0answers
26 views
Specifying format: “xml” ignored with render_to_string
I have an action that needs to render a view to string. The view is called index.xml.erb. I am trying to achieve this with render_to_string:
my_string = render_to_string(layout: false, format: "xml")
...
1
vote
1answer
33 views
ActionController Mixin
How could I create a mixin for action controller, which does something like:
layout Proc.new { |controller|
if controller.request.xhr?
'minimal'
else
'application'
end
}
(I can't ...
1
vote
1answer
84 views
Undefined method 'url_for' while rendering a Rails 2.3.x template inside a ActiveRecord model
I know that this not an "acceptable" practice but as a background process I am caching a rendered Rails partial into the database for faster output via JSONP. I have found many resources on the topic ...
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
1answer
39 views
Rendering Rails partial view (with issues reading the Rails API)
I have a jQuery post submitting a form to a controller create action, which works great. If the save was successful I would like the create action to return a different form so the success callback ...
1
vote
1answer
204 views
How to get segment keys from a Rails 3 route?
I need to determine the number of route segment keys in the current path for an application I'm working on, and despite digging around for a bit in the related Rails 3 source files, I can't figure it ...
1
vote
1answer
391 views
Rails 3- fixing juggernaut involving template and JS generator
I'm using the original Juggernaut (not Juggernaut 2) with Rails 3. In the lib/juggernaut.rb, it breaks due to not being able to find @template. According to this other post, @template is not provided ...
1
vote
1answer
164 views
Migrating from Rails 2 to Rails 3 problem (nil.any?)
I've been upgrading my app from Rails 2.3.8 to Rails 3.
After getting all the basic stuff done (configs, routes, and the new AR API, replacing Authlogic with Devise) and getting some mostly static ...
1
vote
2answers
597 views
Ruby on rails nested form model
I'm trying to use rails nested form_for helper, but I am getting the following error:
BlogPage(#49859550) expected, got Array(#31117360)
Here are my model objects:
class Blog < ...
1
vote
1answer
798 views
Avoiding repetitive “content_for” in views
I have a submenu placed in my layout wich differs from controller to controller, but not between each controllers method views. What I am currently doing is the following:
<% content_for( :submenu ...
1
vote
1answer
624 views
Rails controller testing - Validation errors do not raise a HTTP error response
I have an ActionController derived Test which sends a 'post' request to the controller under test with incorrect data. The controller tries to create a new object and save it. The model has validation ...
1
vote
5answers
568 views
One controller, different views for normal users and admins
in my application, I have a "User" model. Each user can have multiple (email) addresses which are defined in the model "Address":
Class User < ActiveRecord::Base
has_many :addresses
def ...
1
vote
2answers
838 views
Rails default_url_options for actioncontroller to auto format all urls/paths with .html
One of our requirements was that all our url's ended with .html
We've overridden the default_url_options method to add the format to the options
def default_url_options(options={})
...
1
vote
4answers
3k views
uninitialized constant ActionController::Dispatcher::MiddlewareStack
I installed some new gems for testing and ran into an uninitialized constant ActionController::Dispatcher::MiddlewareStack error. I followed the instructions on the gem rdocs-specified the gem ...
0
votes
1answer
23 views
Rails detecting the request type in the controller?
I have a controller which via html shows the user profile, via JSON shows a user hover card w profile info.
class UsersController < ApplicationController
def show
@user = User.where(:id ...
0
votes
0answers
43 views
Does wrap_parameters work for virtual accessors?
I have a model with a completed_at datetime in the schema. I also have a virtual accessor like this:
attr_accessible :completed
def completed=(flag)
self.completed_at = flag ? Time.now : nil
...
0
votes
2answers
33 views
How can I monitor an ActionController::Metal with NewRelic?
I have a Rails 3 application of which some controllers are normal rails controllers and some are implemented using ActionController::Metal. By default, NewRelic monitors the normal rails controllers ...
0
votes
2answers
291 views
ActionController::RoutingError: No route matches [POST]
require 'test_helper'
class MyTest < ActionController::IntegrationTest
test "view posts from login page" do
visit("/logins/new")
find_field('Username').set('abode')
...
0
votes
1answer
31 views
Add default table field when creating new obect Ruby on Rails 3
My models are: Projects has_many Feeds. I just added a column to my Feeds table called feed_error. I currently have a form on the app that creates a new Feed when entered. I want to be able to set ...
0
votes
1answer
56 views
testing a that Rails controller chooses a layout without rendering the layout
i'd like to stub out render and i'd like to test that a certain layout is chosen
bonus catch: in the test env, that layout file will not exist
is there a clever way to detect if the controller has ...
0
votes
1answer
50 views
Rails 2.3.8 application skip controller
I am going to ask a little vague question, but here it goes:
I am maintaining a legacy Rails 2.3.8 application. I noticed a wired behavior, first the application was serving controller_x/action_x ...
0
votes
1answer
27 views
Rails issue with index action
I am having an issue when I try to visit my users index or [/users] I get:
uninitialized constant UsersController::Users
Then it gives the error line
4:in app/controllers/users_controller.rb: ...
0
votes
1answer
119 views
Rails: How to step-by-step debug a request
I have an ajax request that is causing problems in my Rails 3.0.9 app. I can see the problem in the logs, but I don't have any idea what is triggering it between the ajax call and the render. Here's ...
0
votes
0answers
117 views
ActionController::MethodNotAllowed Only get, put, and delete requests
I have seen a similar problem in this forum, but the solution isn't work in my case.I'm developing with Netbeans 6.9.1 with SO Windows Vista. I'm using Rails 2.3.8 and Mogrel 1.1.5.
Part in the code ...
0
votes
1answer
160 views
Namespaced Controller cannot find model virtual attribute method
I get the following error with the supplied code.
undefined method `password' for #<User:0x00000002e66980>
User Model
class User < ActiveRecord::Base
validates_presence_of ...
0
votes
1answer
121 views
Error Rendering with Nested Routes
I am trying to maintain a pretty URL when having a user messaging with failed validation.
I have a routes file that looks like the following:
# For logged users convenience
# ...
0
votes
1answer
101 views
Why does ActionController process image requests, but not process streaming requests?
When some image was not found (it's "src" attribute points to wrong path), i get following error:
Processing ApplicationController#index (for 127.0.0.1 at 2011-04-12 16:44:19) [GET]
...
0
votes
3answers
848 views
Rails 3 / Controller / Flash hash
I want to be able to pass multiple messages to the flash hash, inside of my controller, and have them display nicely together, e.g., in a bulleted list. The way I've devised to do this is to create a ...