-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Technical/Lock latest dependencies within Ruby version (#206)
* Added gemspec with latest dependencies * Removed dependencies version locks in truemail.gemspec * Updated compatible gemspec * Updated circleci config * Rollback ruby-version to minimal (2.5.0) * Updated gem version, changelog
- Loading branch information
Showing
7 changed files
with
105 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# frozen_string_literal: true | ||
|
||
lib = File.expand_path('lib', __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'truemail/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'truemail' | ||
spec.version = Truemail::VERSION | ||
spec.authors = ['Vladislav Trotsenko'] | ||
spec.email = ['[email protected]'] | ||
|
||
spec.summary = %(truemail) | ||
spec.description = %(Configurable framework agnostic plain Ruby email validator. Verify email via Regex, DNS, SMTP and even more.) | ||
|
||
spec.homepage = 'https://github.com/truemail-rb/truemail' | ||
spec.license = 'MIT' | ||
|
||
spec.metadata = { | ||
'homepage_uri' => 'https://truemail-rb.org', | ||
'changelog_uri' => 'https://github.com/truemail-rb/truemail/blob/master/CHANGELOG.md', | ||
'source_code_uri' => 'https://github.com/truemail-rb/truemail', | ||
'documentation_uri' => 'https://truemail-rb.org/truemail-gem', | ||
'bug_tracker_uri' => 'https://github.com/truemail-rb/truemail/issues' | ||
} | ||
|
||
spec.required_ruby_version = '>= 2.5.0' | ||
|
||
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | ||
spec.bindir = 'exe' | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) } | ||
spec.require_paths = ['lib'] | ||
|
||
spec.add_runtime_dependency 'net-smtp', '~> 0.3.1' | ||
spec.add_runtime_dependency 'simpleidn', '~> 0.2.1' | ||
|
||
spec.add_development_dependency 'bundler-audit', '~> 0.9.0.1' | ||
spec.add_development_dependency 'dns_mock', '~> 1.5', '>= 1.5.1' | ||
spec.add_development_dependency 'fasterer', '~> 0.9.0' | ||
spec.add_development_dependency 'ffaker', '~> 2.20' | ||
spec.add_development_dependency 'json_matchers', '~> 0.11.1' | ||
spec.add_development_dependency 'overcommit', '~> 0.58.0' | ||
spec.add_development_dependency 'pry-byebug', '~> 3.9' | ||
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6' | ||
spec.add_development_dependency 'reek', '~> 6.1' | ||
spec.add_development_dependency 'rspec', '~> 3.10' | ||
spec.add_development_dependency 'rubocop', '~> 1.25', '>= 1.25.1' | ||
spec.add_development_dependency 'rubocop-performance', '~> 1.13', '>= 1.13.2' | ||
spec.add_development_dependency 'rubocop-rspec', '~> 2.8' | ||
spec.add_development_dependency 'simplecov', '~> 0.21.2' | ||
spec.add_development_dependency 'smtp_mock', '~> 1.0' | ||
spec.add_development_dependency 'truemail-rspec', '~> 0.7.0' | ||
spec.add_development_dependency 'webmock', '~> 3.14' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby-3.1.0 | ||
ruby-2.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Truemail | ||
VERSION = '2.6.4' | ||
VERSION = '2.6.5' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters