Tagged Questions

4
votes
2answers
116 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, Commen …
3
votes
1answer
100 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 pa …
0
votes
5answers
156 views

One controller, different views for normal users and admins

Hello everyone, 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::Ba …
1
vote
2answers
125 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={} …
0
votes
1answer
40 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 …
0
votes
3answers
663 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-speci …
0
votes
1answer
87 views

Where does Rails use REXML lib and how to require that part?

I have a gem that uses some of the Rails libs, including action_view and active_controller. Though I require those libs, all tests fail when trying to call some has_text? method, w …
0
votes
1answer
129 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 …
0
votes
3answers
148 views

My action controller code looks amateurish

First post time, I've been playing around with MVC abit... I have a view which has multiple input fields, some of these fields can be blank on post. The action method inside the …
2
votes
2answers
334 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 pass …
0
votes
1answer
128 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 …