-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmailhandler.gemspec
36 lines (28 loc) · 1.14 KB
/
mailhandler.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
34
35
36
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mailhandler/version'
Gem::Specification.new do |s|
s.name = 'mailhandler'
s.version = MailHandler::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.required_ruby_version = '>= 3.0.0'
s.authors = ['Igor Balos']
s.email = ['[email protected]', '[email protected]']
s.summary = 'Postmark email receiving and sending handler.'
s.description = 'Use this gem to send emails through SMTP and Postmark API and check if email arrived.'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.homepage = 'https://github.com/ActiveCampaign/mailhandler'
s.require_paths = ['lib']
s.post_install_message = '
==================
Thanks for installing the mailhandler gem.
Review the README.md for implementation details and examples.
==================
'
s.required_rubygems_version = '>= 1.9.3'
s.add_dependency 'mail', '>= 2.7.0'
s.add_dependency 'postmark', '>= 1.7.0'
s.metadata['rubygems_mfa_required'] = 'true'
end