Class: BankAccountStatement::Inputs::HTML::Base

Inherits:
Base
  • Object
show all
Defined in:
lib/bank-account-statement/inputs/HTML/base.rb

Direct Known Subclasses

CPBKGB22::Personal::Base

Constant Summary collapse

FILE_EXT =
'.html'.freeze

Instance Method Summary collapse

Methods inherited from Base

formats, inherited, #parse

Constructor Details

#initialize(html) ⇒ Base

Returns a new instance of Base.



14
15
16
# File 'lib/bank-account-statement/inputs/HTML/base.rb', line 14

def initialize(html)
  @doc = Nokogiri::HTML(html)
end