bank_statement_parser 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63f514f97e4ea127e8f5f207466ae59371eefc23
4
- data.tar.gz: d09dbf8a966d8def416d9597db28e0949a02c106
3
+ metadata.gz: 2a965f6dc78b631995b0222f5a04602511720ca5
4
+ data.tar.gz: 662d867bdf2754e22a552824131abbdb5c800ba4
5
5
  SHA512:
6
- metadata.gz: 00ce8ead80e9c2da7ea606f46e1d3ea983e4a7e0d950b36e3774db3f394ebcfae83bff3a60d60619b270954c2e3c447b225ec5579fb726661de312a846ad7fe5
7
- data.tar.gz: bafa6d5ada99cc93a2e4d646158c244f15d0dfee6e214ce25a57f3de602531100257a8873261d19ae6c6df505d07dd93341558512fb3c5e42b64a3fcc5cea441
6
+ metadata.gz: 58245edba68a4434c878e5ec6afbf72e4002cc7d0f79a63a6da6c34f7f04dfb7615054fd7e9f8b4004580f274727cc1899259235236ca72c3f5959967f758ca4
7
+ data.tar.gz: d97413e5f9611567f75b01a74ebccb38fcaf1d0a3f6f70e6248d12801a37e5120dd8a85ad59b8749bfb7d03b4c95e25cf5061d138fa476637720e8f2588949f6
@@ -1,3 +1,20 @@
1
+ # Copyright 2015 Simon Dawson <spdawson@gmail.com>
2
+
3
+ # This file is part of bank_statement_parser.
4
+ #
5
+ # bank_statement_parser is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation, either version 3 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # bank_statement_parser is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with bank_statement_parser. If not, see <http://www.gnu.org/licenses/>.
17
+
1
18
  module BankStatementParser
2
19
 
3
20
  # Base class for statement parsers
@@ -1,3 +1,20 @@
1
+ # Copyright 2015 Simon Dawson <spdawson@gmail.com>
2
+
3
+ # This file is part of bank_statement_parser.
4
+ #
5
+ # bank_statement_parser is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation, either version 3 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # bank_statement_parser is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with bank_statement_parser. If not, see <http://www.gnu.org/licenses/>.
17
+
1
18
  require 'date'
2
19
  require 'bank_statement_parser/base'
3
20
  module BankStatementParser
@@ -1,3 +1,20 @@
1
+ # Copyright 2015 Simon Dawson <spdawson@gmail.com>
2
+
3
+ # This file is part of bank_statement_parser.
4
+ #
5
+ # bank_statement_parser is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation, either version 3 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # bank_statement_parser is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with bank_statement_parser. If not, see <http://www.gnu.org/licenses/>.
17
+
1
18
  module BankStatementParser
2
19
 
3
20
  # A bank statement record
@@ -1,3 +1,20 @@
1
+ # Copyright 2015 Simon Dawson <spdawson@gmail.com>
2
+
3
+ # This file is part of bank_statement_parser.
4
+ #
5
+ # bank_statement_parser is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation, either version 3 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # bank_statement_parser is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with bank_statement_parser. If not, see <http://www.gnu.org/licenses/>.
17
+
1
18
  require 'logger'
2
19
  require 'bank_statement_parser/hsbc'
3
20
  require 'bank_statement_parser/statement_record'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bank_statement_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Dawson