When I do a mapping in active resource, its default request to the Ruby on Rails always automatically add the extension at the end of the url. For example: I want to get user resource from Ruby on Rails by mapping as below:
class user < ActiveResource::Base self.site = 'http://localhost:3000' end
And something that I need, I just want it pass the url without extension like
http://localhost:3000/userIn contrast it automatically adds the extension at the end of the url like
http://localhost:3000/user.xml
How can I omit the extension of the url when I make request from the active resource mapping?