herestomwiththeweather / oscurrency-ruby-api-wrapper

a wrapper for the oscurrency API

This URL has Read+Write access

b54afba2 » herestomwiththeweather 2009-06-27 initial import 1 module Oscurrency
2 module Models
3 class Exchange < Base
4 cattr_accessor :element_name
5 belongs_to :person
6 #self.site = "#{self.site}/people/:person_id/"
7
8 def self.site
9 create_site_uri_from(@site.to_s + "/people/:person_id/")
10 end
11
12 self.element_name = 'exchange'
13
14 def initialize(options)
15 super(options)
16 end
17 end
18 end
19 end