class Resource << ActiveResource::Base
self.site = "http://localhost:3000"
end
>> r = Resource.new
>> r.title = "A new resource!"
>> r.body = "Some useful info"
>> r.save
>> t = Resource.find_by_title("A new resource!")
>> t.body = "Updated info
>> t.save