repo.or.cz
/
merb_mart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Updating to reflect changes in DM 0.9.1
[merb_mart.git]
/
app
/
models
/
mart
/
accounts
/
credit_card_account.rb
blob
044605110f7453af09853299f97297a9b4b4963b
1
module Mart
2
module Accounts
3
class CreditCardAccount < Accounts::AbstractAccount
4
5
property :cc_number, String
6
property :expiration_month, Integer, :length => 2
7
property :expiration_year, Integer, :length => 4
8
property :credit_ccv, Integer, :length => 5
9
10
end
11
end
12
end