Initial commit

This commit is contained in:
2011-09-28 03:37:39 -07:00
commit b1fbb339c2
373 changed files with 52305 additions and 0 deletions

4
app/models/contract.rb Normal file
View File

@@ -0,0 +1,4 @@
class Contract < ActiveRecord::Base
belongs_to :signer
accepts_nested_attributes_for :signer
end

View File

@@ -0,0 +1,2 @@
class ContractTemplate < ActiveRecord::Base
end

3
app/models/signer.rb Normal file
View File

@@ -0,0 +1,3 @@
class Signer < ActiveRecord::Base
has_many :contracts
end