forked from razorpay/ifsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ifsc.gemspec
24 lines (19 loc) · 907 Bytes
/
ifsc.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lib = File.expand_path('src/ruby', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'ifsc'
s.version = '2.0.34'
s.date = '2022-10-28'
s.summary = 'IFSC code database to help you validate IFSC codes'
s.description = 'A simple gem by @razorpay to help you validate your IFSC codes. IFSC codes are bank codes within India'
s.authors = ['Abhay Rana']
s.email = ['[email protected]']
s.files = ['Gemfile', 'ifsc.gemspec'] + `git ls-files src/*.json src/ruby tests/ruby/* tests/*.json *.md`.split("\n")
s.test_files = s.files.grep(/^(tests)/)
s.require_paths = ['src/ruby']
s.homepage = 'https://ifsc.razorpay.com'
s.license = 'MIT'
s.add_runtime_dependency 'httparty', '~> 0.16'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.8'
end