-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gemspec
20 lines (17 loc) · 876 Bytes
/
.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "mailslurp_client"
s.version = "15.19.22"
s.licenses = ["MIT"]
s.platform = Gem::Platform::RUBY
s.summary = "Official MailSlurp API Client"
s.description = "Create emails addresses in Ruby then send and receive real emails and attachments. See https://www.mailslurp.com/ruby/ for full Ruby documentation. Get an API Key at https://app.mailslurp.com"
s.authors = ["mailslurp"]
s.require_path = 'lib'
s.email = "[email protected]"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md SUPPORT.md SECURITY.md)
s.homepage = "https://www.mailslurp.com/ruby"
s.metadata = { "source_code_uri" => "https://github.com/mailslurp/mailslurp-client-ruby" }
end