-
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.
Browse files
Browse the repository at this point in the history
* Test #iban requirements and return value * Implement working Account#iban * Bump version * Update README, briefly document new `#iban` method * Bump version to 4.1.0 * Move models to their own file * Test more edge-cases for #iban (RED) * Prevent incorrect conditions for IBAN generation (GREEN) * Refactor: extract IBAN logic into its own SpanishIban class * Decouple SpanishIban#new from Account, keep useful .from_account method * Update changelog
- Loading branch information
Showing
3 changed files
with
14 additions
and
2 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
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,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
norma43_parser (4.1.0) | ||
norma43_parser (4.0.0) | ||
virtus (~> 1.0) | ||
zeitwerk (~> 2.0) | ||
|
||
|
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,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Norma43 | ||
VERSION = "4.1.0" | ||
VERSION = "4.0.0" | ||
end |