bfc97737b4
although I spent way too much time on the server side since deciding to add Redis as "persistence".
17 lines
283 B
Ruby
17 lines
283 B
Ruby
require 'active_resource'
|
|
require 'awesome_print'
|
|
|
|
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
|