-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelia_ruby.gemspec
More file actions
39 lines (33 loc) · 1.34 KB
/
elia_ruby.gemspec
File metadata and controls
39 lines (33 loc) · 1.34 KB
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
33
34
35
36
37
38
39
# frozen_string_literal: true
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
require "elia_ruby/version"
Gem::Specification.new do |s|
s.name = "elia_ruby"
s.version = Elia::VERSION
s.required_ruby_version = ">= 2.7.0"
s.summary = "MCC (Merchant Category Code) library for payment processing"
s.description = "A comprehensive library for working with Merchant Category Codes (MCC), " \
"including validation, categorization, and risk assessment."
s.author = "Elia Pay"
s.email = "support@eliapay.com"
s.homepage = "https://github.com/eliapay/elia-ruby"
s.license = "MIT"
s.metadata = {
"bug_tracker_uri" => "https://github.com/eliapay/elia-ruby/issues",
"changelog_uri" => "https://github.com/eliapay/elia-ruby/blob/main/CHANGELOG.md",
"documentation_uri" => "https://github.com/eliapay/elia-ruby#readme",
"github_repo" => "ssh://github.com/eliapay/elia-ruby",
"homepage_uri" => "https://github.com/eliapay/elia-ruby",
"source_code_uri" => "https://github.com/eliapay/elia-ruby",
"rubygems_mfa_required" => "true",
}
included = Regexp.union(
%r{\Alib/},
/\ALICENSE\.txt\z/,
/\AREADME\.md\z/
)
s.files = `git ls-files`.split("\n").grep(included)
s.require_paths = ["lib"]
s.add_dependency "activesupport", ">= 6.0"
s.add_dependency "zeitwerk", "~> 2.6"
end