-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathibandit.gemspec
More file actions
32 lines (25 loc) · 945 Bytes
/
ibandit.gemspec
File metadata and controls
32 lines (25 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true
require File.expand_path("lib/ibandit/version", __dir__)
Gem::Specification.new do |spec|
spec.name = "ibandit"
spec.version = Ibandit::VERSION.dup
spec.summary = "Convert national banking details into IBANs, and vice-versa."
spec.description = <<~MSG.strip.tr("\n", " ")
Ibandit is a Ruby library for manipulating and
validating IBANs. It allows you to construct an IBAN
from national banking details; deconstruct an IBAN into
national banking details; and validate an IBAN's check
digits and format.
MSG
spec.authors = %w[GoCardless]
spec.email = %w[developers@gocardless.com]
spec.licenses = ["MIT"]
spec.files = `git ls-files`.split("\n")
spec.homepage = "https://github.com/gocardless/ibandit"
spec.metadata = {
"rubygems_mfa_required" => "true",
}
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "i18n"
end