Moving things around, combining and splitting ...

This commit is contained in:
Dan Buch
2012-05-18 07:49:25 -04:00
parent b649e10ae8
commit 5dfd9dd7f8
8 changed files with 20 additions and 22 deletions

12
ares/client/lib/client.rb Normal file
View File

@@ -0,0 +1,12 @@
require 'active_resource'
require 'awesome_print'
SITE = 'http://localhost:9282' unless defined?(SITE)
class Person < ActiveResource::Base
self.site = SITE
end
class Family < ActiveResource::Base
self.site = SITE
end