-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathincrease.gemspec
More file actions
30 lines (27 loc) · 836 Bytes
/
increase.gemspec
File metadata and controls
30 lines (27 loc) · 836 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
# frozen_string_literal: true
require_relative "lib/increase/version"
Gem::Specification.new do |s|
s.name = "increase"
s.version = Increase::VERSION
s.summary = "Ruby library to access the Increase API"
s.authors = ["Increase"]
s.email = "dev-feedback@increase.com"
s.homepage = "https://gemdocs.org/gems/increase"
s.metadata["homepage_uri"] = s.homepage
s.metadata["source_code_uri"] = "https://github.com/Increase/increase-ruby"
s.metadata["rubygems_mfa_required"] = false.to_s
s.required_ruby_version = ">= 3.2.0"
s.files = Dir[
"lib/**/*.rb",
"rbi/**/*.rbi",
"sig/**/*.rbs",
"manifest.yaml",
"SECURITY.md",
"CHANGELOG.md",
".ignore"
]
s.extra_rdoc_files = ["README.md"]
s.add_dependency "cgi"
s.add_dependency "connection_pool"
s.add_dependency "standardwebhooks"
end