16 lines
605 B
Ruby
16 lines
605 B
Ruby
require File.expand_path('../lib/postman/rails/version', __FILE__)
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "postman-rails"
|
|
s.description = %q{Rails/ActionMailer library for the Postman email platform}
|
|
s.summary = s.description
|
|
s.homepage = "https://postman.prmail.vn"
|
|
s.version = Postman::Rails::VERSION
|
|
s.files = Dir.glob("{lib}/**/*")
|
|
s.require_paths = ["lib"]
|
|
s.authors = ["Adam Cooke", "Nikkel"]
|
|
s.email = ["me@adamcooke.io", "nikkel@prmail.vn"]
|
|
s.licenses = ['MIT']
|
|
s.add_dependency "postman-ruby", ">= 0.0.2", "< 2.0"
|
|
end
|