SOLUTION: Here''s an update - I did figure out why my custom constraint
wasn''t working correctly and here''s the changes I made:
In PersonalizedDomain I changed the self.matches? method from a class method
to an instance method as such:
[code]
# lib/personalized_domain.rb
class PersonalizedDomain
def matches?(request)
case request.host
when "www.#{APP_CONFIG[:domain]}",
"#{APP_CONFIG[:domain]}", nil
false
else
true
end
end
end
[/code]
and in routes I did this:
[code]
constraints(PersonalizedDomain.new) do
resources :posts
resources :personalized
end
[/code]
clem_c_rock wrote:>
> Hello,
> I am having a strange problem w/ rails 3 routing constraints. I have
> this custom class w/ a self.matches? method as such:
>
> [code]
> class PersonalizedDomain
>
> def self.matches?(request)
> Rails.logger.info("self.matches? NEVER CALLED!!!!")
> end
>
> [/code]
>
>
> and in routes I use the custom Class like this:
>
> [code]
> constraints(PersonalizedDomain) do
>
> Rails.logger.info("constraints block ENTERED")
> root :to => "projects#show"
> end
> [/code]
>
> The self.matches?(request) method never gets called and I don''t
understand
> why?
>
>
--
View this message in context:
http://old.nabble.com/Problem-w--routes-constraints-tp31472374p31506172.html
Sent from the RubyOnRails Users mailing list archive at Nabble.com.
--
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.