-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## 2.0.1 (2019-10-17) | ||
|
||
### Breaking Changes | ||
|
||
- Drop Ruby support below 2.4. | ||
|
||
### Bug fixes | ||
|
||
- | ||
|
||
### Enhancements | ||
|
||
- Clean up dependencies | ||
|
||
## 1.0.1 (2016-02-16) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
# Norma43 file parser | ||
|
||
Norma43 is the standard format file to extract bank transactions from the SEPA (Single euro payments area), format details and content is described in the [Norma43 format](https://github.com/sequra/norma43_parser/blob/master/doc/cuaderno_43_-_junio_2012.pdf). | ||
[![Gem Version](https://badge.fury.io/rb/norma43_parser.svg)](https://badge.fury.io/rb/norma43_parser) | ||
|
||
Norma43 is the standard format file to extract bank transactions from the SEPA (Single euro payments area), format details and content is described in the [Norma43 format](https://github.com/sequra/norma43_parser/blob/master/doc/cuaderno_43_-_junio_2012.pdf). | ||
|
||
## Usage | ||
|
||
Include it in your Gemfile | ||
|
||
``` | ||
gem 'norma43_parser', git: "[email protected]:sequra/norma43_parser.git" | ||
``` | ||
|
||
|
||
```ruby | ||
require "norma43" | ||
|
||
|
@@ -25,7 +27,7 @@ The parser returns a Norma43 Document that may include multiple accounts. | |
accounts=[account1..accountN] | ||
``` | ||
|
||
### Account | ||
### Account | ||
|
||
The account object has all the information described in the standard format and the transactions between **start_date** and **end_date**. | ||
|
||
|