forked from mailjet/mailjet-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmailjet.gemspec
30 lines (25 loc) · 1 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
#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 = ["Aurélien AMILIN", "Benoit Bénézech"]
s.email = ["[email protected]"]
s.homepage = "http://www.mailjet.com"
s.summary = "Cloud Emailing for easy delivery."
s.description = "Cloud Emailing for easy delivery."
s.files = Dir["{lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "activesupport", ">= 3.1.0"
s.add_development_dependency "actionmailer", ">= 3.0.9"
s.add_development_dependency "minitest"
s.add_development_dependency "minitest-matchers"
s.add_development_dependency "turn"
s.add_development_dependency "rake"
s.add_development_dependency "json"
s.add_development_dependency "rack"
s.add_development_dependency "mocha"
end