Class: OFX::Parser::OFX102
- Inherits:
-
Object
- Object
- OFX::Parser::OFX102
- Defined in:
- lib/ofx/parser/ofx102.rb
Constant Summary collapse
- VERSION =
"1.0.2"
- ACCOUNT_TYPES =
{ "CHECKING" => :checking }
- TRANSACTION_TYPES =
{ "CREDIT" => :credit, "DEBIT" => :debit, "OTHER" => :other }
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#html ⇒ Object
readonly
Returns the value of attribute html.
Instance Method Summary collapse
- #account ⇒ Object
-
#initialize(options = {}) ⇒ OFX102
constructor
A new instance of OFX102.
Constructor Details
#initialize(options = {}) ⇒ OFX102
Returns a new instance of OFX102.
20 21 22 23 24 |
# File 'lib/ofx/parser/ofx102.rb', line 20 def initialize( = {}) @headers = [:headers] @body = [:body] @html = Nokogiri::HTML.parse(body) end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
17 18 19 |
# File 'lib/ofx/parser/ofx102.rb', line 17 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
16 17 18 |
# File 'lib/ofx/parser/ofx102.rb', line 16 def headers @headers end |
#html ⇒ Object (readonly)
Returns the value of attribute html.
18 19 20 |
# File 'lib/ofx/parser/ofx102.rb', line 18 def html @html end |
Instance Method Details
#account ⇒ Object
26 27 28 |
# File 'lib/ofx/parser/ofx102.rb', line 26 def account @account ||= build_account end |