ifsc 2.0.47 → 2.0.48
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 +4 -4
- data/CHANGELOG.md +10 -0
- data/ifsc.gemspec +1 -1
- data/src/IFSC.json +1 -1
- data/src/banknames.json +2 -0
- data/src/ruby/bank.rb +2 -0
- metadata +1 -1
data/src/banknames.json
CHANGED
@@ -202,6 +202,7 @@
|
|
202
202
|
"BTCX": "Balitikuri Co-operative Bank",
|
203
203
|
"BTUX": "Balotra Urban Co-operative Bank",
|
204
204
|
"BUBX": "Bhandara Urban Co-operative Bank",
|
205
|
+
"BUCB": "THE BURDWAN CENTRAL CO OPERATIVE BANK LTD",
|
205
206
|
"BUCL": "Belur Urban Co-operative Bank",
|
206
207
|
"BUCX": "Beawar Urban Co-operative Bank",
|
207
208
|
"BUGX": "Baroda Uttar Pradesh Gramin Bank",
|
@@ -1287,6 +1288,7 @@
|
|
1287
1288
|
"TGDX": "Gondia District Central Co-operative Bank Gondia",
|
1288
1289
|
"TGMB": "Tumkur Grain Merchant's Co-operative Bank",
|
1289
1290
|
"TGNX": "Gandhinagar Nagrik Co-operative Bank",
|
1291
|
+
"TGRB": "TELANGANA GRAMEENA BANK",
|
1290
1292
|
"TGUX": "Gandhinagar Urban Co-operative Bank",
|
1291
1293
|
"THCX": "Hooghly Co-operative Credit Bank",
|
1292
1294
|
"THMX": "Halol Mercantile Co-operative Bank",
|
data/src/ruby/bank.rb
CHANGED
@@ -208,6 +208,7 @@ module Razorpay
|
|
208
208
|
BTCX = :BTCX
|
209
209
|
BTUX = :BTUX
|
210
210
|
BUBX = :BUBX
|
211
|
+
BUCB = :BUCB
|
211
212
|
BUCL = :BUCL
|
212
213
|
BUCX = :BUCX
|
213
214
|
BUGX = :BUGX
|
@@ -1293,6 +1294,7 @@ module Razorpay
|
|
1293
1294
|
TGDX = :TGDX
|
1294
1295
|
TGMB = :TGMB
|
1295
1296
|
TGNX = :TGNX
|
1297
|
+
TGRB = :TGRB
|
1296
1298
|
TGUX = :TGUX
|
1297
1299
|
THCX = :THCX
|
1298
1300
|
THMX = :THMX
|