You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/ares/client.rb

16 lines
259 B

require 'active_resource'
SITE = 'http://localhost:9282' unless defined?(SITE)
class Person < ActiveResource::Base
self.site = SITE
def family
Family.find(self.surname.downcase)
end
end
class Family < ActiveResource::Base
self.site = SITE
end