ifsc 2.0.5 → 2.0.6
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 +8 -1
- data/README.md +2 -2
- data/ifsc.gemspec +2 -2
- data/src/IFSC.json +1 -1
- data/src/banknames.json +5 -1
- data/src/banks.json +14 -7
- data/src/ruby/bank.rb +4 -0
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d80e9b738a4490f5de6c0def79efa67949c480f411596b251bbfd910e918914b
|
|
4
|
+
data.tar.gz: ac72033b1a663ea558b05f76caa28a18e4a417126a48c5e8dffd51b6069fa426
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e9667c3d3ec19509063e629ce9926dfa43ce1271f27afe91f18ac1b41b68cb4970f5ada236c8ded0b88915b8eb0364f6ababe1e649e5055a23d73cac5d625a6
|
|
7
|
+
data.tar.gz: 24b567174fe7fa29945be187ae83eedd58939e0bf8ab01b181f350f72c4142c177278d538b77acd1d75da60b9ffee7849beae43fb3a7346ab3c9fdb85af1f542
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
5
5
|
|
|
6
6
|
## [UNRELEASED][unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.0.6][2.0.6]
|
|
9
|
+
## Changed
|
|
10
|
+
- Updated Metadata
|
|
11
|
+
|
|
8
12
|
## [2.0.5][2.0.5]
|
|
9
13
|
## Changed
|
|
10
14
|
- Updated Metadata
|
|
@@ -239,7 +243,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
239
243
|
|
|
240
244
|
- Removes some data formats (YAML/Large JSON) for cleaner code. If you were using them, please let create an issue.
|
|
241
245
|
|
|
242
|
-
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.
|
|
246
|
+
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.6...HEAD
|
|
247
|
+
[2.0.6]: https://github.com/razorpay/ifsc/releases/tag/2.0.6
|
|
248
|
+
[2.0.5]: https://github.com/razorpay/ifsc/releases/tag/2.0.5
|
|
249
|
+
[2.0.4]: https://github.com/razorpay/ifsc/releases/tag/2.0.4
|
|
243
250
|
[2.0.3]: https://github.com/razorpay/ifsc/releases/tag/2.0.3
|
|
244
251
|
[2.0.2]: https://github.com/razorpay/ifsc/releases/tag/2.0.2
|
|
245
252
|
[2.0.1]: https://github.com/razorpay/ifsc/releases/tag/2.0.1
|
data/README.md
CHANGED
|
@@ -4,9 +4,9 @@ This is part of the IFSC toolset released by Razorpay.
|
|
|
4
4
|
You can find more details about the entire release at
|
|
5
5
|
[ifsc.razorpay.com](https://ifsc.razorpay.com).
|
|
6
6
|
|
|
7
|
-
[](https://microbadger.com/images/razorpay/ifsc:2.0.6) [](https://opensource.org/licenses/MIT) [](http://makeapullrequest.com)
|
|
8
8
|
|
|
9
|
-
[](https://microbadger.com/images/razorpay/ifsc:2.0.6) [](https://badge.fury.io/js/ifsc) [](https://badge.fury.io/rb/ifsc) [](https://badge.fury.io/ph/razorpay%2Fifsc) [](https://hex.pm/packages/ifsc)
|
|
10
10
|
|
|
11
11
|
## Dataset
|
|
12
12
|
|
data/ifsc.gemspec
CHANGED
|
@@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = 'ifsc'
|
|
6
|
-
s.version = '2.0.
|
|
7
|
-
s.date = '
|
|
6
|
+
s.version = '2.0.6'
|
|
7
|
+
s.date = '2022-01-25'
|
|
8
8
|
s.summary = 'IFSC code database to help you validate IFSC codes'
|
|
9
9
|
s.description = 'A simple gem by @razorpay to help you validate your IFSC codes. IFSC codes are bank codes within India'
|
|
10
10
|
s.authors = ['Abhay Rana', 'Nihal Gonsalves']
|