-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmailersend-ruby.gemspec
33 lines (26 loc) · 1.24 KB
/
mailersend-ruby.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
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mailersend/version'
Gem::Specification.new do |spec|
spec.name = 'mailersend-ruby'
spec.version = Mailersend::VERSION
spec.authors = ['Nikola Milojević']
spec.email = ['[email protected]']
spec.summary = "MailerSend's official Ruby SDK"
spec.description = "MailerSend's official Ruby SDK. Interacts with all endpoints at MailerSend API."
spec.homepage = 'https://www.mailersend.com'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/mailersend/mailersend-ruby'
spec.metadata['changelog_uri'] = 'https://github.com/mailersend/mailersend-ruby/blob/main/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'http', '~> 5.2'
spec.add_dependency 'json', '~> 2.9'
spec.add_dependency 'uri', '~> 1.0'
end