-
Notifications
You must be signed in to change notification settings - Fork 72
/
mailjet.gemspec
46 lines (36 loc) · 1.86 KB
/
mailjet.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "mailjet/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "mailjet"
s.version = Mailjet::VERSION
s.authors = ["Tyler Nappy", "Jean-Baptiste Escoyez", "Aurélien AMILIN", "Benoit Bénézech"]
s.homepage = "http://www.mailjet.com"
s.summary = "Mailjet a powerful all-in-one email service provider clients can use to get maximum insight and deliverability results from both their marketing and transactional emails. Our analytics tools and intelligent APIs give senders the best understanding of how to maximize benefits for each individual contact, with each email sent."
s.description = "Ruby wrapper for Mailjet's v3 API"
s.post_install_message = %q{
The Ruby wrapper for Mailjet has just been installed successfully, congrats!
Maybe you want to configure your credentials to use your account.
All informations available on https://github.com/mailjet/mailjet-gem.
But if you are using Rails, you'll be glad to generate it easily using:
$ rails generate mailjet:initializer
We hope you will enjoy Mailjet!
}
s.files = Dir["{lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "activesupport", ">= 5.0.0"
s.add_dependency "rack", ">= 1.4.0"
s.add_dependency 'faraday', "~> 2.1"
s.add_dependency "yajl-ruby"
s.add_development_dependency "actionmailer", ">= 5.0.0"
s.add_development_dependency "rake"
s.add_development_dependency "json"
s.add_development_dependency "webmock"
s.add_development_dependency "vcr"
s.add_development_dependency "rspec"
s.add_development_dependency "dotenv"
s.required_ruby_version = ">= 2.2.0"
end