forked from cimm/brite_verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrite_verify.gemspec
25 lines (21 loc) · 1.15 KB
/
brite_verify.gemspec
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'brite_verify/version'
Gem::Specification.new do |gem|
gem.name = "brite_verify"
gem.version = BriteVerify::VERSION
gem.authors = ["Simon Schoeters"]
gem.email = ["[email protected]"]
gem.description = %q{Ruby interface for BriteVerify's paying e-mail verification service.}
gem.summary = %q{BriteVerify is a paying e-mail verification service. You pass it an e-mail address and it tells you if the e-mail address is real or not. They offer a typical REST like API. This gem wraps the API in a more Ruby friendly syntax.}
gem.homepage = "https://github.com/cimm/brite_verify"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test)/})
gem.require_paths = ["lib"]
gem.signing_key = 'gem-private_key.pem'
gem.cert_chain = ['gem-public_cert.pem']
gem.add_development_dependency 'webmock', '~> 3.8.2'
gem.add_development_dependency 'rake', '~> 13.0.1'
end