10 lines
183 B
Ruby
10 lines
183 B
Ruby
module Gnucash
|
|
class Account
|
|
def initialize(book, node)
|
|
@node = node
|
|
@name = node.xpath('act:name').text
|
|
@type = node.xpath('act:type').text
|
|
end
|
|
end
|
|
end
|