-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailverify.gemspec
More file actions
29 lines (23 loc) · 1.05 KB
/
emailverify.gemspec
File metadata and controls
29 lines (23 loc) · 1.05 KB
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
# frozen_string_literal: true
require_relative "lib/emailverify/version"
Gem::Specification.new do |spec|
spec.name = "emailverify"
spec.version = Emailverify::VERSION rescue "0.1.1"
spec.authors = ["Clustox"]
spec.email = ["support@emailverify.io"]
spec.summary = "Ruby wrapper for the EmailVerify.io API"
spec.description = "A small, object-oriented Ruby client for the EmailVerify.io service."
spec.homepage = "https://github.com/Clustox/emailverify-ruby"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.7.0'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").select { |f| f =~ /^(lib|README|LICENSE|Rakefile|emailverify\.gemspec)/ }
rescue
Dir["lib/**/*"] + %w[README.md LICENSE Rakefile emailverify.gemspec]
end
# 👉 Fix open-ended dependency warnings
spec.add_runtime_dependency "faraday", "~> 1.0"
spec.add_runtime_dependency "json", "~> 2.0"
# 👉 Dev dependency also fixed
spec.add_development_dependency "rspec", "~> 3.0"
end