[RAILS] Removing (.:format) from a resource in routes

Hi!

I have a routes.rb like this:

Xxx::Application.routes.draw do
resources :sessions, :only => [ :new, :create, :destroy ]
resources :users
root :to => ‘welcome#index’
end

this produces the following in rake routes:

nmelzer@ubuntu-Delly:~/Dokumente/sources/ruby/1.9.2/rails3.1/xxx$ rake
routes
users_new GET /users/new(.:format) {:controller=>“users”,
:action=>“new”}
sessions POST /sessions(.:format) {:action=>“create”,
:controller=>“sessions”}
new_session GET /sessions/new(.:format) {:action=>“new”,
:controller=>“sessions”}
session DELETE /sessions/:id(.:format) {:action=>“destroy”,
:controller=>“sessions”}
users GET /users(.:format) {:action=>“index”,
:controller=>“users”}
POST /users(.:format) {:action=>“create”,
:controller=>“users”}
new_user GET /users/new(.:format) {:action=>“new”,
:controller=>“users”}
edit_user GET /users/:id/edit(.:format) {:action=>“edit”,
:controller=>“users”}
user GET /users/:id(.:format) {:action=>“show”,
:controller=>“users”}
PUT /users/:id(.:format) {:action=>“update”,
:controller=>“users”}
DELETE /users/:id(.:format) {:action=>“destroy”,
:controller=>“users”}
root / {:controller=>“welcome”,
:action=>“index”}

Since I am only serving HTML and dont plan to serv other formats I
want to get rid of all the (.:format) in the routes, is that possible?

in 3.1.1 at least you can add , :format => false to the end of the
route.

found here…
.Rails Routing from the Outside In — Ruby on Rails Guides
under section 3.11 Route Globbing

2011/10/16 Jim M. [email protected]:

in 3.1.1 at least you can add , :format => false to the end of the route.

found here…
.Rails Routing from the Outside In — Ruby on Rails Guides
under section 3.11 Route Globbing

Thank you, I did a quick look on that page yesterday before asking,
but I could not find it.

I really could have give CTRL+F a try :smiley:

Bye
Norbert