Tagged Questions

6
votes
2answers
636 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 ...
4
votes
2answers
842 views

before_filter with parameters

i have a method that does something like this: before_filter :authenticate_rights, :only => [:show] def authenticate_rights project = Project.find(params[:id]) redirect_to ...
4
votes
1answer
418 views

before_filter with another controller

I am trying to create an action that will check for every page if the user is logged in. For that, in the controller Home I created this method: def check_session if !session[:user_id] ...
4
votes
3answers
1k views

In Sinatra, best way to serve iPhone layout vs. normal layout?

I'm writing a Sinatra app which needs to render different layouts based on whether the user is using an iPhone or a regular browser. I can detect the browser type using Rack-Mobile-Detect but I'm not ...
2
votes
2answers
447 views

ignore before_update when save

some case I don't want execute before_update. please help me. case A: in case I want used before_update obj = Object.find(id) obj.save but case B I don't want used before_update obj = ...
2
votes
3answers
976 views

rails: put and interruption in before filter

I want a before filter like "must_have_permission_to_write" that when called if user hasn't permission to write renders a message saying "you can't do that!" and return. Problem is I'm getting "can ...
1
vote
1answer
48 views

Confusing about a function :before_filter

I have following controller: class CarsController < ApplicationController autocomplete :user, :name before_filter :require_user, :except => [:my_action] def index end ... def ...
1
vote
1answer
360 views

Rails 3 way of doing skip_before_filter, :only

In rails 2.8 we can write skip_before_filter like this skip_before_filter :require_login, :only => [:create,:new,:accept] which means, i wanted to apply the filter require_login only to these ...
1
vote
2answers
291 views

Rails 3 before_filter setting and checking boolean values | paperchase / treasure hunt game

I am working on a paperchase / treasure hunt mobile web app. I have basic authentication, if the user scans any of the following codes he will be directed to the sign_up page. So far everything works ...
0
votes
2answers
434 views

Rails controller testing: How to disable before_filter of controller while testing?

before_filter of controller expects user to be logged in. this is why test of controller fails(work fine if i remove user authentication call from before_filter). Is it possible if user authentication ...
0
votes
1answer
205 views

Rails benchmark the filter chain?

I'm doing some optimisation on my Rails (2.3.5) app, and can't seem to find an elegant way of benchmarking the filter chain. I'm ab testing the site with something like: ab -n 200 -c 3 -i -k ...