forked from premailer/premailer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpremailer.gemspec
More file actions
31 lines (31 loc) · 1017 Bytes
/
premailer.gemspec
File metadata and controls
31 lines (31 loc) · 1017 Bytes
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
27
28
29
30
31
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 = "code@dunae.ca"
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.extra_rdoc_files = [
"CHANGELOG.rdoc",
"README.rdoc",
"README.rdoc"
]
s.files = [
"init.rb",
"bin/premailer",
"bin/trollop.rb",
"lib/premailer.rb",
"lib/premailer/html_to_plain_text.rb",
"lib/premailer/premailer.rb",
"misc/client_support.yaml"
]
s.executables = 'premailer'
s.add_dependency('nokogiri', '>= 1.4.0')
s.add_dependency('css_parser', '>= 0.9.1')
#s.add_dependency('text-reform', '>= 0.2.0')
s.add_dependency('htmlentities', '>= 4.0.0')
end