forked from premailer/premailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpremailer.gemspec
20 lines (19 loc) · 867 Bytes
/
premailer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rake'
Gem::Specification.new do |s|
s.name = "premailer"
s.version = "1.5.5"
s.date = "2009-12-03"
s.summary = "Preflight for HTML e-mail."
s.email = "[email protected]"
s.homepage = "http://premailer.dialect.ca/"
s.description = "Improve the rendering of HTML emails by making CSS inline, converting links and warning about unsupported code."
s.has_rdoc = true
s.author = "Alex Dunae"
s.rdoc_options << '--all' << '--inline-source' << '--line-numbers' << '--charset' << 'utf-8'
s.files = FileList['*.rb', 'lib/premailer.rb', 'lib/**/*', '*.rdoc', 'misc/client_support.yaml', 'bin/*', 'test/*', 'test/**/*'].to_a
s.executables = 'premailer'
s.add_dependency('hpricot', '>= 0.6')
s.add_dependency('css_parser', '>= 0.9.1')
s.add_dependency('text-reform', '>= 0.2.0')
s.add_dependency('htmlentities', '>= 4.0.0')
end