forked from HashNuke/mailgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailgun.gemspec
23 lines (19 loc) · 917 Bytes
/
mailgun.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["Akash Manohar J", "Sean Grove"]
gem.email = ["akash@akash.im"]
gem.description = %q{Mailgun library for Ruby}
gem.summary = %q{Idiomatic library for using the mailgun API from within ruby}
gem.homepage = "http://github.com/Bushido/mailgun"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "mailgun"
gem.require_paths = ["lib"]
gem.version = "0.7"
gem.add_dependency(%q<rest-client>, [">= 0"])
gem.add_dependency(%q<multimap>, [">= 0"])
gem.add_development_dependency(%q<rspec>, [">= 2"])
gem.add_development_dependency(%q<debugger>, [">= 0"])
gem.add_development_dependency(%q<vcr>, [">= 0"])
end