Hello,
I am beginning with ActiveResource and I am using the Basecamp API for
my tests.
But in the Basecamp API there are a few non REST methods like /me.xml or
/people.xml (http://developer.37signals.com/basecamp/people.shtml)
I was wondering how can Active Resource call these methods?
Here is what I have:
Class Person < Base
def self.me
??
end
end
The Base class sets all the activeResource informations like site,
users, …
Greg