Sha256: d364af37587cf012f2630c887f561997025d484c89e5bd3a1169093250bede17
Contents?: true
Size: 1.95 KB
Versions: 3
Compression:
Stored size: 1.95 KB
Contents
# frozen_string_literal: true require_relative 'lib/smtp_mock/version' Gem::Specification.new do |spec| spec.name = 'smtp_mock' spec.version = SmtpMock::VERSION spec.authors = ['Vladislav Trotsenko'] spec.email = %w[admin@bestweb.com.ua] spec.summary = %(💎 Ruby SMTP mock. Mimic any SMTP server behavior for your test environment) spec.description = %(💎 Ruby SMTP mock. Mimic any SMTP server behavior for your test environment.) spec.homepage = 'https://github.com/mocktools/ruby-smtp-mock' spec.license = 'MIT' spec.metadata = { 'homepage_uri' => 'https://github.com/mocktools/ruby-smtp-mock', 'changelog_uri' => 'https://github.com/mocktools/ruby-smtp-mock/blob/master/CHANGELOG.md', 'source_code_uri' => 'https://github.com/mocktools/ruby-smtp-mock', 'documentation_uri' => 'https://github.com/mocktools/ruby-smtp-mock/blob/master/README.md', 'bug_tracker_uri' => 'https://github.com/mocktools/ruby-smtp-mock/issues' } current_ruby_version = ::Gem::Version.new(::RUBY_VERSION) dry_struct_version = current_ruby_version >= ::Gem::Version.new('2.7.0') ? '~> 1.6' : '~> 1.4' ffaker_version = current_ruby_version >= ::Gem::Version.new('3.0.0') ? '~> 2.23' : '~> 2.21' spec.required_ruby_version = '>= 2.5.0' spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(bin|lib|tmp)/|.ruby-version|smtp_mock.gemspec|LICENSE}) } spec.executables = %w[smtp_mock] spec.require_paths = %w[lib] spec.post_install_message = 'smtpmock is required system dependency. For more details run: `bundle exec smtp_mock -h`' spec.add_runtime_dependency 'dry-struct', dry_struct_version spec.add_development_dependency 'ffaker', ffaker_version spec.add_development_dependency 'net-smtp', '~> 0.5.0' if current_ruby_version >= ::Gem::Version.new('3.1.0') spec.add_development_dependency 'rake', '~> 13.2', '>= 13.2.1' spec.add_development_dependency 'rspec', '~> 3.13' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
smtp_mock-1.4.4 | smtp_mock.gemspec |
smtp_mock-1.4.3 | smtp_mock.gemspec |
smtp_mock-1.4.1 | smtp_mock.gemspec |