public
Description: Create MIME email messages with multiple body parts and attachments in Ruby
Homepage: http://mailfactory.rubyforge.org/
Clone URL: git://github.com/tmm1/mailfactory.git
mailfactory / mailfactory.gemspec
100644 26 lines (23 sloc) 0.94 kb
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
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 = "david@grayskies.net"
    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