Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gems/mail-smtp_pool/mail-smtp_pool.gemspec')
-rw-r--r--vendor/gems/mail-smtp_pool/mail-smtp_pool.gemspec26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/gems/mail-smtp_pool/mail-smtp_pool.gemspec b/vendor/gems/mail-smtp_pool/mail-smtp_pool.gemspec
new file mode 100644
index 00000000000..3d9036f19b1
--- /dev/null
+++ b/vendor/gems/mail-smtp_pool/mail-smtp_pool.gemspec
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+
+lib = File.expand_path('lib', __dir__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+
+Gem::Specification.new do |spec|
+ spec.name = 'mail-smtp_pool'
+ spec.version = '0.1.0'
+ spec.authors = ['Heinrich Lee Yu']
+ spec.email = ['heinrich@gitlab.com']
+
+ spec.summary = 'Mail extension for sending using an SMTP connection pool'
+ spec.homepage = 'https://gitlab.com/gitlab-org/gitlab/-/tree/master/vendor/gems/mail-smtp_pool'
+ spec.metadata = { 'source_code_uri' => 'https://gitlab.com/gitlab-org/gitlab/-/tree/master/vendor/gems/mail-smtp_pool' }
+ spec.license = 'MIT'
+
+ spec.files = Dir['lib/**/*.rb']
+ spec.require_paths = ['lib']
+
+ # Please maintain alphabetical order for dependencies
+ spec.add_runtime_dependency 'connection_pool', '~> 2.0'
+ spec.add_runtime_dependency 'mail', '~> 2.7'
+
+ # Please maintain alphabetical order for dev dependencies
+ spec.add_development_dependency 'rspec', '~> 3.10.0'
+end