forked from tmm1/mailfactory
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mailfactory.gemspec
25 lines (23 loc) · 940 Bytes
/
mailfactory.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
require 'rubygems'
require 'lib/mailfactory'
spec = Gem::Specification.new do |s|
s.add_dependency('mime-types', '>= 1.13.1')
s.name = 'mailfactory'
s.version = MailFactory::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "MailFactory is a pure-ruby MIME mail generator"
s.description = "MailFactory is s simple module for producing RFC compliant mail that can include multiple attachments, multiple body parts, and arbitrary headers"
s.files = Dir.glob("./lib/*").delete_if {|item| item.include?("~")}
s.files << Dir.glob("./tests/*").delete_if {|item| item.include?("~")}
s.require_path = 'lib'
s.author = "David Powers"
s.email = "[email protected]"
s.rubyforge_project = "mailfactory"
s.homepage = "http://mailfactory.rubyforge.org"
s.has_rdoc = true
s.test_files = "./tests/test_mailfactory.rb"
end
if $0==__FILE__
Gem.manage_gems
Gem::Builder.new(spec).build
end