forked from ActiveCampaign/postmark-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postmark.gemspec
49 lines (41 loc) · 1.77 KB
/
postmark.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
47
48
49
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "postmark/version"
Gem::Specification.new do |s|
s.name = "postmark"
s.version = Postmark::VERSION
s.homepage = "http://postmarkapp.com"
s.platform = Gem::Platform::RUBY
s.authors = ["Petyo Ivanov", "Ilya Sabanin", "Artem Chistyakov"]
s.date = "2012-01-31"
s.email = "ilya@wildbit.com"
s.extra_rdoc_files = ["LICENSE", "README.rdoc"]
s.summary = "Official Postmark API wrapper."
s.description = "Use this gem to send emails through Postmark HTTP API and retrieve info about bounces."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.post_install_message = %q{
==================
Thanks for installing the postmark gem. If you don't have an account, please sign up at http://postmarkapp.com/.
Review the README.rdoc for implementation details and examples.
==================
}
s.required_rubygems_version = ">= 1.3.7"
s.add_dependency "rake"
s.add_dependency "json"
s.add_development_dependency "tmail"
s.add_development_dependency "mail"
s.add_development_dependency "rspec-core", "~> 2.0"
s.add_development_dependency "activesupport", "~> 3.0"
s.add_development_dependency "fakeweb"
s.add_development_dependency "fakeweb-matcher"
s.add_development_dependency "timecop"
s.add_development_dependency "yajl-ruby"
if RUBY_VERSION < '1.9.0'
s.add_development_dependency(%q<ruby-debug>, [">= 0"])
else
s.add_development_dependency(%q<ruby-debug19>, [">= 0"])
end
end