konto_check 0.0.1 → 0.0.2
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.
- data/VERSION.yml +1 -1
- data/ext/konto_check/konto_check_ruby.c +2 -2
- data/konto_check.gemspec +1 -1
- metadata +2 -2
data/VERSION.yml
CHANGED
|
@@ -83,11 +83,11 @@ VALUE load_bank_data(VALUE self, VALUE path_rb) {
|
|
|
83
83
|
case LUT1_FILE_GENERATED:
|
|
84
84
|
break;
|
|
85
85
|
case FILE_READ_ERROR:
|
|
86
|
-
rb_raise(rb_eRuntimeError, "[%d] KontoCheck: can not open file '%s'.", ret, path);
|
|
86
|
+
rb_raise(rb_eRuntimeError, "[%d] KontoCheck: can not open file '%s'. Use the file 'blz_yyyymmdd.txt' from http://www.bundesbank.de/zahlungsverkehr/zahlungsverkehr_bankleitzahlen_download.php", ret, path);
|
|
87
87
|
case INVALID_BLZ_FILE:
|
|
88
88
|
rb_raise(rb_eRuntimeError, "[%d] KontoCheck: invalid input file '%s'. Use the file 'blz_yyyymmdd.txt' from http://www.bundesbank.de/zahlungsverkehr/zahlungsverkehr_bankleitzahlen_download.php", ret, path);
|
|
89
89
|
default:
|
|
90
|
-
rb_raise(rb_eRuntimeError, "[%d] KontoCheck: error reading file '%s'.", ret, tmp_lut);
|
|
90
|
+
rb_raise(rb_eRuntimeError, "[%d] KontoCheck: error reading file '%s'. Use the file 'blz_yyyymmdd.txt' from http://www.bundesbank.de/zahlungsverkehr/zahlungsverkehr_bankleitzahlen_download.php", ret, tmp_lut);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
// read the LUT file
|
data/konto_check.gemspec
CHANGED