Sha256: 825c740e39ca2efe790bb66c721e66335be6a58875c27e22b07578dc4d9913bd
Contents?: true
Size: 1.39 KB
Versions: 5
Compression:
Stored size: 1.39 KB
Contents
# -*- 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.license = 'MIT' s.authors = ["Tomek Maszkowski", "Igor Balos", "Artem Chistyakov", "Nick Hammond", "Petyo Ivanov", "Ilya Sabanin"] s.email = "tomek@wildbit.com" s.extra_rdoc_files = ["LICENSE", "README.md"] s.rdoc_options = ["--charset=UTF-8"] 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.md for implementation details and examples. ================== } s.required_rubygems_version = ">= 1.3.7" s.add_dependency "json" s.add_development_dependency "mail" s.add_development_dependency "rake" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
postmark-1.22.0 | postmark.gemspec |
postmark-1.21.8 | postmark.gemspec |
postmark-1.21.7 | postmark.gemspec |
postmark-1.21.6 | postmark.gemspec |
postmark-1.21.5 | postmark.gemspec |